OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:webstore_data
(Results
1 - 14
of
14
) sorted by null
/external/chromium_org/chrome/browser/extensions/
webstore_data_fetcher_delegate.h
24
// ownership of |
webstore_data
|.
26
scoped_ptr<base::DictionaryValue>
webstore_data
) = 0;
webstore_standalone_installer.cc
110
scoped_ptr<DictionaryValue>
webstore_data
) {
118
if (!CheckInlineInstallPermitted(*
webstore_data
, &error)) {
123
if (!CheckRequestorPermitted(*
webstore_data
, &error)) {
130
if (!
webstore_data
->GetString(kManifestKey, &manifest) ||
131
!
webstore_data
->GetString(kUsersKey, &localized_user_count_) ||
132
!
webstore_data
->GetDouble(kAverageRatingKey, &average_rating_) ||
133
!
webstore_data
->GetInteger(kRatingCountKey, &rating_count_)) {
140
webstore_data
->GetBoolean(kShowUserCountKey, &show_user_count_);
149
if ((
webstore_data
->HasKey(kLocalizedNameKey) &&
150
!
webstore_data
->GetString(kLocalizedNameKey, &localized_name_)) |
[
all
...]
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.cc
69
const base::DictionaryValue&
webstore_data
,
78
const base::DictionaryValue&
webstore_data
,
webstore_startup_installer.h
50
const base::DictionaryValue&
webstore_data
,
53
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
,
161
scoped_ptr<base::DictionaryValue>
webstore_data
) OVERRIDE;
/external/chromium_org/chrome/browser/chromeos/file_manager/
app_installer.h
48
const base::DictionaryValue&
webstore_data
,
51
const base::DictionaryValue&
webstore_data
,
app_installer.cc
92
const base::DictionaryValue&
webstore_data
,
100
const base::DictionaryValue&
webstore_data
,
/external/chromium_org/chrome/browser/apps/
ephemeral_app_launcher.h
75
const base::DictionaryValue&
webstore_data
,
78
const base::DictionaryValue&
webstore_data
,
ephemeral_app_launcher.cc
162
const base::DictionaryValue&
webstore_data
,
169
const base::DictionaryValue&
webstore_data
,
/external/chromium_org/chrome/browser/chromeos/app_mode/
kiosk_app_data.cc
456
scoped_ptr<base::DictionaryValue>
webstore_data
) {
457
// Takes ownership of |
webstore_data
|.
461
if (!CheckResponseKeyValue(
webstore_data
.get(), kManifestKey, &manifest))
464
if (!CheckResponseKeyValue(
webstore_data
.get(), kLocalizedNameKey, &name_))
468
if (!CheckResponseKeyValue(
webstore_data
.get(), kIconUrlKey,
476
<< ValueToString(
webstore_data
.get());
kiosk_app_data.h
115
scoped_ptr<base::DictionaryValue>
webstore_data
) OVERRIDE;
Completed in 206 milliseconds