| Index: chrome/common/render_messages.h
|
| diff --git a/chrome/common/render_messages.h b/chrome/common/render_messages.h
|
| index 40cfebb3a94f907c92a7946518984258428a5f81..ff49fe99f101703519b56084a829abc40847d8a8 100644
|
| --- a/chrome/common/render_messages.h
|
| +++ b/chrome/common/render_messages.h
|
| @@ -18,6 +18,7 @@
|
| #include "components/content_settings/core/common/content_settings.h"
|
| #include "components/content_settings/core/common/content_settings_pattern.h"
|
| #include "components/content_settings/core/common/content_settings_types.h"
|
| +#include "components/ntp_tiles/ntp_tile_source.h"
|
| #include "components/omnibox/common/omnibox_focus_state.h"
|
| #include "content/public/common/browser_controls_state.h"
|
| #include "content/public/common/webplugininfo.h"
|
| @@ -171,8 +172,8 @@ IPC_STRUCT_TRAITS_END()
|
| IPC_ENUM_TRAITS_MAX_VALUE(NTPLoggingEventType,
|
| NTP_EVENT_TYPE_LAST)
|
|
|
| -IPC_ENUM_TRAITS_MAX_VALUE(NTPLoggingTileSource,
|
| - NTPLoggingTileSource::LAST)
|
| +IPC_ENUM_TRAITS_MAX_VALUE(ntp_tiles::NTPTileSource,
|
| + ntp_tiles::NTPTileSource::LAST)
|
|
|
| IPC_ENUM_TRAITS_MAX_VALUE(WebApplicationInfo::MobileCapable,
|
| WebApplicationInfo::MOBILE_CAPABLE_APPLE)
|
| @@ -537,14 +538,14 @@ IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_LogEvent,
|
| IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_LogMostVisitedImpression,
|
| int /* page_seq_no */,
|
| int /* position */,
|
| - NTPLoggingTileSource /* tile_source */)
|
| + ntp_tiles::NTPTileSource /* tile_source */)
|
|
|
| // Logs a navigation on one of the Most Visited tile on the InstantExtended
|
| // New Tab Page.
|
| IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_LogMostVisitedNavigation,
|
| int /* page_seq_no */,
|
| int /* position */,
|
| - NTPLoggingTileSource /* tile_source */)
|
| + ntp_tiles::NTPTileSource /* tile_source */)
|
|
|
| // The Instant page asks whether the user syncs its history.
|
| IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_HistorySyncCheck,
|
|
|