OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:webstore_data
(Results
1 - 15
of
15
) 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
106
scoped_ptr<base::DictionaryValue>
webstore_data
) {
116
if (!CheckInlineInstallPermitted(*
webstore_data
, &error)) {
121
if (!CheckRequestorPermitted(*
webstore_data
, &error)) {
128
if (!
webstore_data
->GetString(kManifestKey, &manifest) ||
129
!
webstore_data
->GetString(kUsersKey, &localized_user_count_) ||
130
!
webstore_data
->GetDouble(kAverageRatingKey, &average_rating_) ||
131
!
webstore_data
->GetInteger(kRatingCountKey, &rating_count_)) {
138
webstore_data
->GetBoolean(kShowUserCountKey, &show_user_count_);
147
if ((
webstore_data
->HasKey(kLocalizedNameKey) &&
148
!
webstore_data
->GetString(kLocalizedNameKey, &localized_name_)) |
[
all
...]
webstore_inline_installer.cc
79
const base::DictionaryValue&
webstore_data
,
85
if (
webstore_data
.HasKey(kInlineInstallNotSupportedKey)
86
&& !
webstore_data
.GetBoolean(kInlineInstallNotSupportedKey,
93
if (!
webstore_data
.GetString(kRedirectUrlKey, &redirect_url)) {
112
const base::DictionaryValue&
webstore_data
,
115
const bool data_has_single_site =
webstore_data
.HasKey(kVerifiedSiteKey);
116
const bool data_has_site_list =
webstore_data
.HasKey(kVerifiedSitesKey);
125
if (!
webstore_data
.GetString(kVerifiedSiteKey, &verified_site)) {
133
if (!
webstore_data
.GetList(kVerifiedSitesKey, &verified_sites)) {
webstore_inline_installer.h
53
const base::DictionaryValue&
webstore_data
,
56
const base::DictionaryValue&
webstore_data
,
webstore_inline_installer_unittest.cc
24
bool TestCheckRequestorPermitted(const base::DictionaryValue&
webstore_data
) {
26
return CheckRequestorPermitted(
webstore_data
, &error);
81
base::DictionaryValue
webstore_data
;
local
82
webstore_data
.SetString("verified_site", verified_site);
86
return installer->TestCheckRequestorPermitted(
webstore_data
);
99
base::DictionaryValue
webstore_data
;
local
100
webstore_data
.Set("verified_sites", sites);
104
return installer->TestCheckRequestorPermitted(
webstore_data
);
webstore_install_with_prompt.h
61
const base::DictionaryValue&
webstore_data
,
64
const base::DictionaryValue&
webstore_data
,
webstore_install_with_prompt.cc
80
const base::DictionaryValue&
webstore_data
,
88
const base::DictionaryValue&
webstore_data
,
webstore_standalone_installer.h
101
const base::DictionaryValue&
webstore_data
,
108
const base::DictionaryValue&
webstore_data
,
162
scoped_ptr<base::DictionaryValue>
webstore_data
) OVERRIDE;
external_install_ui.cc
90
scoped_ptr<base::DictionaryValue>
webstore_data
) OVERRIDE;
274
scoped_ptr<base::DictionaryValue>
webstore_data
) {
278
if (!
webstore_data
->GetString(kUsersKey, &localized_user_count) ||
279
!
webstore_data
->GetDouble(kAverageRatingKey, &average_rating) ||
280
!
webstore_data
->GetInteger(kRatingCountKey, &rating_count)) {
288
webstore_data
->GetBoolean(kShowUserCountKey, &show_user_count);
/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
91
const base::DictionaryValue&
webstore_data
,
99
const base::DictionaryValue&
webstore_data
,
/external/chromium_org/chrome/browser/apps/
ephemeral_app_launcher.h
76
const base::DictionaryValue&
webstore_data
,
79
const base::DictionaryValue&
webstore_data
,
ephemeral_app_launcher.cc
175
const base::DictionaryValue&
webstore_data
,
182
const base::DictionaryValue&
webstore_data
,
/external/chromium_org/chrome/browser/chromeos/app_mode/
kiosk_app_data.h
115
scoped_ptr<base::DictionaryValue>
webstore_data
) OVERRIDE;
kiosk_app_data.cc
454
scoped_ptr<base::DictionaryValue>
webstore_data
) {
455
// Takes ownership of |
webstore_data
|.
459
if (!CheckResponseKeyValue(
webstore_data
.get(), kManifestKey, &manifest))
462
if (!CheckResponseKeyValue(
webstore_data
.get(), kLocalizedNameKey, &name_))
466
if (!CheckResponseKeyValue(
webstore_data
.get(), kIconUrlKey,
474
<< ValueToString(
webstore_data
.get());
Completed in 696 milliseconds