Searched defs:GUIDPair (Results 1 - 2 of 2) sorted by relevance

/external/chromium/chrome/browser/autofill/
H A Dautofill_manager.h129 typedef std::pair<std::string, size_t> GUIDPair; typedef in class:AutofillManager
145 virtual int GUIDToID(const GUIDPair& guid);
146 virtual const GUIDPair IDToGUID(int id);
150 int PackGUIDs(const GUIDPair& cc_guid, const GUIDPair& profile_guid);
151 void UnpackGUIDs(int id, GUIDPair* cc_guid, GUIDPair* profile_guid);
274 std::map<GUIDPair, int> guid_id_map_;
275 std::map<int, GUIDPair> id_guid_map_;
H A Dautofill_manager_unittest.cc437 return PackGUIDs(IDToGUID(credit_card_id), GUIDPair(std::string(), 0));
440 virtual int GUIDToID(const GUIDPair& guid) OVERRIDE {
450 virtual const GUIDPair IDToGUID(int id) OVERRIDE {
453 return GUIDPair(std::string(), 0);
455 return GUIDPair(base::StringPrintf("00000000-0000-0000-0000-%012d", id), 0);
473 typedef AutofillManager::GUIDPair GUIDPair; typedef in class:AutofillManagerTest
1503 GUIDPair guid("00000000-0000-0000-0000-000000000001", 0);
1504 GUIDPair empty(std::string(), 0);
1523 GUIDPair gui
[all...]

Completed in 59 milliseconds