/external/chromium_org/chrome/browser/history/ |
shortcuts_database_unittest.cc | 26 std::string guid; member in struct:__anon5072::ShortcutsDatabaseTestInfo 124 info.guid, ASCIIToUTF16(info.text), 174 shortcut_ids.push_back(shortcut_test_db[0].guid); 175 shortcut_ids.push_back(shortcut_test_db[2].guid); 183 shortcuts.find(shortcut_test_db[0].guid); 186 it = shortcuts.find(shortcut_test_db[1].guid); 189 it = shortcuts.find(shortcut_test_db[2].guid); 203 shortcuts.find(shortcut_test_db[0].guid); 206 it = shortcuts.find(shortcut_test_db[1].guid); 209 it = shortcuts.find(shortcut_test_db[2].guid); [all...] |
/external/chromium_org/chromeos/network/onc/ |
onc_certificate_importer_impl.cc | 142 std::string guid; local 143 certificate.GetStringWithoutPathExpansion(::onc::certificate::kGUID, &guid); 144 DCHECK(!guid.empty()); 149 if (!DeleteCertAndKeyByNickname(guid)) { 165 guid, 170 return ParseClientCertificate(guid, certificate); 180 const std::string& guid, 210 ONC_LOG_WARNING("Web trust not granted for certificate: " + guid); 289 (*imported_server_and_ca_certs)[guid] = x509_cert; 295 const std::string& guid, [all...] |
/external/chromium_org/chromeos/network/ |
policy_applicator.cc | 38 const std::string& guid) { 39 PolicyApplicator::GuidToPolicyMap::const_iterator it = policies.find(guid); 120 << " doesn't contain a GUID."; 131 // unmanaged. It's an inconsistency if there is a GUID but no UIData, thus 132 // clear the GUID just in case. 143 // If we have a GUID that might match a current policy, do a lookup using 144 // that GUID at first. In particular this is necessary, as some networks 150 // If we didn't find a policy by GUID, still a new policy might match. 168 VLOG(1) << "Not updating existing managed configuration with guid " 182 // SSID changed might not be a good idea anyways. If the policy GUID [all...] |
mock_managed_network_configuration_handler.h | 60 const std::string& guid, 66 const base::DictionaryValue*(const std::string& guid,
|
network_connection_handler_unittest.cc | 144 "{ \"GUID\": \"wifi0\", \"Type\": \"wifi\", \"State\": \"idle\", " 147 "{ \"GUID\": \"wifi1\", \"Type\": \"wifi\", \"State\": \"online\" }"; 149 "{ \"GUID\": \"wifi2\", \"Type\": \"wifi\", \"State\": \"association\" }"; 151 "{ \"GUID\": \"wifi3\", \"Type\": \"wifi\", " 154 "{ \"GUID\": \"cellular1\", \"Type\": \"cellular\"," 195 "{ \"GUID\": \"wifi4\", \"Type\": \"wifi\", \"Connectable\": false,"
|
/external/chromium-trace/trace-viewer/src/tracing/trace_model/ |
async_slice_group_test.js | 64 // Replace __T1_GUID__ with t1's actual GUID 65 js = js.replace(/__T1_GUID__/g, t1.guid);
|
/external/chromium_org/chrome/installer/mini_installer/ |
configuration.h | 39 // Returns the app guid to be used for Chrome. --chrome-sxs on the command 40 // line makes this the canary's app guid.
|
/external/chromium_org/net/tools/quic/ |
quic_server_test.cc | 54 // public flags (8 byte guid) 56 // guid
|
/external/chromium/base/debug/ |
trace_event_win.h | 121 // The ETW trace provider GUID. 122 BASE_API extern const GUID kChromeTraceProviderName; 124 // The ETW event class GUID for 32 bit events. 125 BASE_API extern const GUID kTraceEventClass32; 127 // The ETW event class GUID for 64 bit events. 128 BASE_API extern const GUID kTraceEventClass64;
|
trace_event_win.cc | 18 const GUID kChromeTraceProviderName = { 22 const GUID kTraceEventClass32 = { 26 const GUID kTraceEventClass64 = {
|
/external/chromium/chrome/browser/autofill/ |
credit_card.h | 20 explicit CreditCard(const std::string& guid); 46 // The guid is the primary identifier for |CreditCard| objects. 47 const std::string guid() const { return guid_; } function in class:CreditCard 48 void set_guid(const std::string& guid) { guid_ = guid; } 126 // The guid of this credit card.
|
personal_data_manager.h | 111 // Removes the profile represented by |guid|. 112 void RemoveProfile(const std::string& guid); 114 // Returns the profile with the specified |guid|, or NULL if there is no 115 // profile with the specified |guid|. 116 AutofillProfile* GetProfileByGUID(const std::string& guid); 124 // Removes the credit card represented by |guid|. 125 void RemoveCreditCard(const std::string& guid); 127 // Returns the credit card with the specified |guid|, or NULL if there is 128 // no credit card with the specified |guid|. 129 CreditCard* GetCreditCardByGUID(const std::string& guid); [all...] |
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/autofill/ |
AutofillDialogControllerAndroid.java | 40 * @param guidLastUsedBilling GUID of the last selected Autofill billing address, or null 41 * @param guidLastUsedShipping GUID of the last selected Autofill shipping address, or null 42 * @param guidLastUsedCard GUID of the last selected Autofill credit card, or null 79 * @param initialBillingGuid GUID of the initial billing address selection in Autofill 80 * @param initialShippingGuid GUID of the initial shipping address selection in Autofill 81 * @param initialCardGuid GUID of the initial credit card selection in Autofill
|
/external/chromium_org/chrome/browser/ui/webui/options/ |
autofill_options_handler.cc | 11 #include "base/guid.h" 390 entry->Append(new StringValue(profiles[i]->guid())); 404 entry->Append(new StringValue(card->guid())); 420 std::string guid; local 421 if (!args->GetString(0, &guid)) { 426 personal_data_->RemoveByGUID(guid); 432 std::string guid; local 433 if (!args->GetString(0, &guid)) { 438 AutofillProfile* profile = personal_data_->GetProfileByGUID(guid); 449 address.SetString("guid", profile->guid()) 475 std::string guid; local [all...] |
/external/chromium_org/components/test/data/web_database/ |
version_52.sql | 20 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expiration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0, origin VARCHAR DEFAULT ''); 22 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, country_code VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0, origin VARCHAR DEFAULT ''); 23 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR); 24 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR); 25 CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, number VARCHAR); 26 CREATE TABLE autofill_profiles_trash ( guid VARCHAR);
|
version_34.sql | 37 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0, country_code VARCHAR); 39 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR); 41 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR); 43 CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, number VARCHAR); 46 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expiration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0);
|
version_35.sql | 17 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, country_code VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0); 18 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR); 19 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR); 20 CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, number VARCHAR); 52 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expiration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0);
|
/external/chromium/chrome/browser/sync/glue/ |
autofill_model_associator.cc | 23 #include "chrome/common/guid.h" 306 static std::string guid(guid::GenerateGUID()); 308 p.set_guid(guid); 359 std::string guid = profile_in_web_db->guid(); local 360 Associate(&guid, sync_id); 365 std::string guid = guid::GenerateGUID(); local 366 if (guid::IsValidGUID(guid) == false) [all...] |
/external/chromium/chrome/browser/webdata/ |
web_data_service_unittest.cc | 28 #include "chrome/common/guid.h" 257 // Check that GUID-based notification was sent. 259 AutofillProfileChange::ADD, profile.guid(), &profile); 300 // Check that GUID-based notification was sent. 302 AutofillProfileChange::REMOVE, profile.guid(), NULL); 312 wds_->RemoveAutofillProfile(profile.guid()); 349 AutofillProfileChange::UPDATE, profile1.guid(), &profile1_changed); 378 AutofillCreditCardChange::ADD, card.guid(), &card); 422 AutofillCreditCardChange::REMOVE, credit_card.guid(), NULL); 431 wds_->RemoveCreditCard(credit_card.guid()); [all...] |
web_data_service.cc | 416 void WebDataService::RemoveAutofillProfile(const std::string& guid) { 419 this, GetNextRequestHandle(), NULL, guid); 468 void WebDataService::RemoveCreditCard(const std::string& guid) { 471 this, GetNextRequestHandle(), NULL, guid); 1072 std::string guid = request->GetArgument(); local 1219 std::string guid = request->GetArgument(); local [all...] |
/external/chromium_org/chrome/browser/resources/options/ |
autofill_edit_address_overlay.js | 9 // The GUID of the loaded address. 10 var guid; 65 self.guid = ''; 74 * GUID can be properly cleared. 125 * Clears any uncommitted input, resets the stored GUID and dismisses the 131 this.guid = ''; 142 address[0] = this.guid; 255 * this data and stores the GUID of the address. 261 this.guid = address.guid; [all...] |
/external/chromium_org/components/autofill/core/browser/ |
personal_data_manager.h | 48 // A pair of GUID and variant index. Represents a single FormGroup and a 85 // Saves |imported_profile| to the WebDB if it exists. Returns the guid of 90 // Saves a credit card value detected in |ImportedFormData|. Returns the guid 101 // Removes the profile or credit card represented by |guid|. 102 virtual void RemoveByGUID(const std::string& guid); 104 // Returns the profile with the specified |guid|, or NULL if there is no 105 // profile with the specified |guid|. Both web and auxiliary profiles may 107 AutofillProfile* GetProfileByGUID(const std::string& guid); 115 // Returns the credit card with the specified |guid|, or NULL if there is 116 // no credit card with the specified |guid| [all...] |
/external/chromium/chrome/browser/resources/options/ |
autofill_edit_address_overlay.js | 9 // The GUID of the loaded address. 10 var guid; 45 self.guid = ''; 97 * Clears any uncommitted input, resets the stored GUID and dismisses the 103 this.guid = ''; 114 address[0] = this.guid; 260 * this data and stores the GUID of the address. 266 this.guid = address['guid'];
|
/external/libvpx/libvpx/build/make/ |
gen_msvs_sln.sh | 60 local guid=`grep ProjectGUID "$file" | awk 'BEGIN {FS="\""}{if (NR==1) print $2}'` 63 local guid=`grep ProjectGuid "$file" | sed 's,.*<.*>\(.*\)</.*>.*,\1,'` 66 # save the project GUID to a varaible, normalizing to the basename of the 73 eval "${var}_guid=$guid" 96 eval "local guid=\${$1_guid}" 98 # save the project GUID to a varaible, normalizing to the basename of the 103 eval "${var}_guid=$guid" 105 echo "Project(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}\") = \"$name\", \"$file\", \"$guid\"" 115 [ -z "${dep_guid}" ] && die "Unknown GUID for $dep (dependency of $var)"
|
/external/chromium_org/base/debug/ |
trace_event_win.cc | 17 const GUID kChromeTraceProviderName = { 21 const GUID kTraceEventClass32 = { 25 const GUID kTraceEventClass64 = {
|