Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(212)

Side by Side Diff: chrome/browser/extensions/webstore_data_fetcher_delegate.cc

Issue 145153002: Make sideloaded (externally installed) extensions display webstore info (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ChromeOS fix Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/extensions/webstore_data_fetcher_delegate.h"
6
7 namespace extensions {
8
9 const char WebstoreDataFetcherDelegate::kAverageRatingKey[] = "average_rating";
10 const char WebstoreDataFetcherDelegate::kIconUrlKey[] = "icon_url";
11 const char WebstoreDataFetcherDelegate::kIdKey[] = "id";
12 const char WebstoreDataFetcherDelegate::kInlineInstallNotSupportedKey[] =
13 "inline_install_not_supported";
14 const char WebstoreDataFetcherDelegate::kLocalizedDescriptionKey[] =
15 "localized_description";
16 const char WebstoreDataFetcherDelegate::kLocalizedNameKey[] = "localized_name";
17 const char WebstoreDataFetcherDelegate::kManifestKey[] = "manifest";
18 const char WebstoreDataFetcherDelegate::kRatingCountKey[] = "rating_count";
19 const char WebstoreDataFetcherDelegate::kRedirectUrlKey[] = "redirect_url";
20 const char WebstoreDataFetcherDelegate::kShowUserCountKey[] = "show_user_count";
21 const char WebstoreDataFetcherDelegate::kUsersKey[] = "users";
22 const char WebstoreDataFetcherDelegate::kVerifiedSiteKey[] = "verified_site";
23 const char WebstoreDataFetcherDelegate::kVerifiedSitesKey[] = "verified_sites";
24
25 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/browser/extensions/webstore_data_fetcher_delegate.h ('k') | chrome/browser/extensions/webstore_inline_installer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698