Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / extensions / webstore_data_fetcher_delegate.cc
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