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
7namespace extensions {
8
9const char WebstoreDataFetcherDelegate::kAverageRatingKey[] = "average_rating";
10const char WebstoreDataFetcherDelegate::kIconUrlKey[] = "icon_url";
11const char WebstoreDataFetcherDelegate::kIdKey[] = "id";
12const char WebstoreDataFetcherDelegate::kInlineInstallNotSupportedKey[] =
13    "inline_install_not_supported";
14const char WebstoreDataFetcherDelegate::kLocalizedDescriptionKey[] =
15    "localized_description";
16const char WebstoreDataFetcherDelegate::kLocalizedNameKey[] = "localized_name";
17const char WebstoreDataFetcherDelegate::kManifestKey[] = "manifest";
18const char WebstoreDataFetcherDelegate::kRatingCountKey[] = "rating_count";
19const char WebstoreDataFetcherDelegate::kRedirectUrlKey[] = "redirect_url";
20const char WebstoreDataFetcherDelegate::kShowUserCountKey[] = "show_user_count";
21const char WebstoreDataFetcherDelegate::kUsersKey[] = "users";
22const char WebstoreDataFetcherDelegate::kVerifiedSiteKey[] = "verified_site";
23const char WebstoreDataFetcherDelegate::kVerifiedSitesKey[] = "verified_sites";
24
25}  // namespace extensions
26