Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3197)

Unified Diff: chrome/browser/ui/webui/metrics_handler.cc

Issue 256763004: Remove WebUI NTP on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ted's nit Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/metrics_handler.cc
diff --git a/chrome/browser/ui/webui/metrics_handler.cc b/chrome/browser/ui/webui/metrics_handler.cc
index 4c0f944cf64b2462c93d33052d8e41eca8e22a84..eb90a1ce0eb5d3efc6c95eb0b21d5e450b549a4e 100644
--- a/chrome/browser/ui/webui/metrics_handler.cc
+++ b/chrome/browser/ui/webui/metrics_handler.cc
@@ -116,6 +116,8 @@ void MetricsHandler::HandleLogEventTime(const base::ListValue* args) {
}
void MetricsHandler::HandleLogMouseover(const base::ListValue* args) {
+#if !defined(OS_ANDROID)
Nico 2014/04/25 20:22:04 Do you need this? If this function isn't called, t
aurimas (slooooooooow) 2014/04/25 21:23:38 It actually fails to compile. This function get re
NTPUserDataLogger::GetOrCreateFromWebContents(
web_ui()->GetWebContents())->LogEvent(NTP_MOUSEOVER);
+#endif // !defined(OS_ANDROID)
}

Powered by Google App Engine
This is Rietveld 408576698