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

Unified Diff: chrome/browser/ui/app_list/app_list_extension_sorting_observer.h

Issue 17038002: Separate the NTP app ordering from the app list app ordering (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revert lazy initialzation Created 7 years, 3 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/app_list/app_list_extension_sorting_observer.h
diff --git a/chrome/browser/ui/app_list/app_list_extension_sorting_observer.h b/chrome/browser/ui/app_list/app_list_extension_sorting_observer.h
new file mode 100755
index 0000000000000000000000000000000000000000..feccad0826862a7a76a27cb9129662f98c3ec20c
--- /dev/null
+++ b/chrome/browser/ui/app_list/app_list_extension_sorting_observer.h
@@ -0,0 +1,18 @@
+// Copyright 2013 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_UI_APP_LIST_APP_LIST_EXTENSION_SORTING_OBSERVER_H_
+#define CHROME_BROWSER_UI_APP_LIST_APP_LIST_EXTENSION_SORTING_OBSERVER_H_
+
+// Abstract interface to allow handling app list reordering.
+class AppListExtensionSortingObserver {
+ public:
+ // Called by the AppListExtensionSorting when reordering occurs.
+ virtual void OnAppListReordered() = 0;
+
+ protected:
+ virtual ~AppListExtensionSortingObserver() {}
+};
+
+#endif // CHROME_BROWSER_UI_APP_LIST_APP_LIST_EXTENSION_SORTING_OBSERVER_H_

Powered by Google App Engine
This is Rietveld 408576698