OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:webstore_data
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/chrome/browser/extensions/
webstore_standalone_installer.cc
88
DictionaryValue*
webstore_data
) {
96
if (!CheckInlineInstallPermitted(*
webstore_data
, &error)) {
101
if (!CheckRequestorPermitted(*
webstore_data
, &error)) {
108
if (!
webstore_data
->GetString(kManifestKey, &manifest) ||
109
!
webstore_data
->GetString(kUsersKey, &localized_user_count_) ||
110
!
webstore_data
->GetDouble(kAverageRatingKey, &average_rating_) ||
111
!
webstore_data
->GetInteger(kRatingCountKey, &rating_count_)) {
118
webstore_data
->GetBoolean(kShowUserCountKey, &show_user_count_);
127
if ((
webstore_data
->HasKey(kLocalizedNameKey) &&
128
!
webstore_data
->GetString(kLocalizedNameKey, &localized_name_)) |
[
all
...]
webstore_data_fetcher_delegate.h
22
// ownership of |
webstore_data
|.
24
base::DictionaryValue*
webstore_data
) = 0;
webstore_inline_installer.cc
84
const base::DictionaryValue&
webstore_data
,
90
if (
webstore_data
.HasKey(kInlineInstallNotSupportedKey)
91
&& !
webstore_data
.GetBoolean(kInlineInstallNotSupportedKey,
98
if (!
webstore_data
.GetString(kRedirectUrlKey, &redirect_url)) {
117
const base::DictionaryValue&
webstore_data
,
120
const bool data_has_single_site =
webstore_data
.HasKey(kVerifiedSiteKey);
121
const bool data_has_site_list =
webstore_data
.HasKey(kVerifiedSitesKey);
130
if (!
webstore_data
.GetString(kVerifiedSiteKey, &verified_site)) {
138
if (!
webstore_data
.GetList(kVerifiedSitesKey, &verified_sites)) {
webstore_inline_installer_unittest.cc
26
bool TestCheckRequestorPermitted(const base::DictionaryValue&
webstore_data
) {
28
return CheckRequestorPermitted(
webstore_data
, &error);
83
base::DictionaryValue
webstore_data
;
local
84
webstore_data
.SetString("verified_site", verified_site);
88
return installer->TestCheckRequestorPermitted(
webstore_data
);
101
base::DictionaryValue
webstore_data
;
local
102
webstore_data
.Set("verified_sites", sites);
106
return installer->TestCheckRequestorPermitted(
webstore_data
);
webstore_startup_installer.h
49
const base::DictionaryValue&
webstore_data
,
52
const base::DictionaryValue&
webstore_data
,
webstore_startup_installer.cc
61
const base::DictionaryValue&
webstore_data
,
70
const base::DictionaryValue&
webstore_data
,
webstore_inline_installer.h
53
const base::DictionaryValue&
webstore_data
,
56
const base::DictionaryValue&
webstore_data
,
webstore_standalone_installer.h
100
const base::DictionaryValue&
webstore_data
,
107
const base::DictionaryValue&
webstore_data
,
143
base::DictionaryValue*
webstore_data
) OVERRIDE;
/external/chromium_org/chrome/browser/chromeos/app_mode/
kiosk_app_data.cc
405
base::DictionaryValue*
webstore_data
) {
406
// Takes ownership of |
webstore_data
|.
407
scoped_ptr<base::DictionaryValue> data(
webstore_data
);
412
if (!
webstore_data
->GetString(kManifestKey, &manifest)) {
417
if (!
webstore_data
->GetString(kLocalizedNameKey, &name_)) {
423
if (!
webstore_data
->GetString(kIconUrlKey, &icon_url_string)) {
kiosk_app_data.h
99
base::DictionaryValue*
webstore_data
) OVERRIDE;
Completed in 160 milliseconds