blob: c85f2fb724599dbfeae53a1907b35e7b42ef063b [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_ANDROID_EXPLORE_SITES_EXPLORE_SITES_FEATURE_H_
#define CHROME_BROWSER_ANDROID_EXPLORE_SITES_EXPLORE_SITES_FEATURE_H_
namespace chrome {
namespace android {
namespace explore_sites {
extern const char kExploreSitesVariationParameterName[];
extern const char kExploreSitesVariationExperimental[];
extern const char kExploreSitesVariationPersonalized[];
// A Java counterpart will be generated for this enum.
// GENERATED_JAVA_ENUM_PACKAGE: org.chromium.chrome.browser.explore_sites
enum class ExploreSitesVariation {
ENABLED,
EXPERIMENT,
PERSONALIZED,
DISABLED
};
ExploreSitesVariation GetExploreSitesVariation();
} // namespace explore_sites
} // namespace android
} // namespace chrome
#endif // CHROME_BROWSER_ANDROID_EXPLORE_SITES_EXPLORE_SITES_FEATURE_H_