// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_NTP_TILES_TILE_TITLE_SOURCE_H_ #define COMPONENTS_NTP_TILES_TILE_TITLE_SOURCE_H_ namespace ntp_tiles { // The source where the displayed title of an NTP tile originates from. // // These values must stay in sync with the NTPTileTitleSource enums in // enums.xml. // // A Java counterpart will be generated for this enum. // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.chrome.browser.suggestions.tile enum class TileTitleSource { … }; } // namespace ntp_tiles #endif // COMPONENTS_NTP_TILES_TILE_TITLE_SOURCE_H_