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

Unified Diff: ui/app_list/views/start_page_view.cc

Issue 1132943004: Add Apps.AppListSearchResultDistanceFromOrigin UMA stat. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@add_query_length_stat
Patch Set: Created 5 years, 7 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
« no previous file with comments | « ui/app_list/views/search_result_tile_item_view.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/app_list/views/start_page_view.cc
diff --git a/ui/app_list/views/start_page_view.cc b/ui/app_list/views/start_page_view.cc
index 4e7ec57a7452d739bbf4f7e0a5eaeb06cbb19c51..68131a3dd8e548e2f347719210163ef82ab4d712 100644
--- a/ui/app_list/views/start_page_view.cc
+++ b/ui/app_list/views/start_page_view.cc
@@ -126,6 +126,8 @@ class StartPageView::StartPageTilesContainer
void UpdateSelectedIndex(int old_selected, int new_selected) override;
void OnContainerSelected(bool from_bottom,
bool directional_movement) override;
+ void NotifyFirstResultYIndex(int y_index) override;
+ int GetYSize() override;
private:
ContentsView* contents_view_;
@@ -218,6 +220,17 @@ void StartPageView::StartPageTilesContainer::UpdateSelectedIndex(
void StartPageView::StartPageTilesContainer::OnContainerSelected(
bool /*from_bottom*/,
bool /*directional_movement*/) {
+ NOTREACHED();
+}
+
+void StartPageView::StartPageTilesContainer::NotifyFirstResultYIndex(
+ int /*y_index*/) {
+ NOTREACHED();
+}
+
+int StartPageView::StartPageTilesContainer::GetYSize() {
+ NOTREACHED();
+ return 0;
}
////////////////////////////////////////////////////////////////////////////////
« no previous file with comments | « ui/app_list/views/search_result_tile_item_view.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698