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

Side by Side Diff: chrome/browser/ui/webui/ntp/app_launcher_handler.h

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_WEBUI_NTP_APP_LAUNCHER_HANDLER_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_NTP_APP_LAUNCHER_HANDLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_NTP_APP_LAUNCHER_HANDLER_H_ 6 #define CHROME_BROWSER_UI_WEBUI_NTP_APP_LAUNCHER_HANDLER_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
11 11
12 #include "apps/metrics_names.h" 12 #include "apps/metrics_names.h"
13 #include "base/macros.h" 13 #include "base/macros.h"
14 #include "base/task/cancelable_task_tracker.h" 14 #include "base/task/cancelable_task_tracker.h"
15 #include "chrome/browser/extensions/extension_uninstall_dialog.h" 15 #include "chrome/browser/extensions/extension_uninstall_dialog.h"
16 #include "chrome/browser/ui/extensions/extension_enable_flow_delegate.h" 16 #include "chrome/browser/ui/extensions/extension_enable_flow_delegate.h"
17 #include "chrome/common/extensions/extension_constants.h" 17 #include "chrome/common/extensions/extension_constants.h"
18 #include "components/favicon/core/favicon_service.h" 18 #include "components/favicon/core/favicon_service.h"
19 #include "components/prefs/pref_change_registrar.h" 19 #include "components/prefs/pref_change_registrar.h"
20 #include "components/sync/api/string_ordinal.h"
20 #include "content/public/browser/notification_observer.h" 21 #include "content/public/browser/notification_observer.h"
21 #include "content/public/browser/notification_registrar.h" 22 #include "content/public/browser/notification_registrar.h"
22 #include "content/public/browser/web_ui_message_handler.h" 23 #include "content/public/browser/web_ui_message_handler.h"
23 #include "extensions/browser/extension_registry_observer.h" 24 #include "extensions/browser/extension_registry_observer.h"
24 #include "extensions/common/extension.h" 25 #include "extensions/common/extension.h"
25 #include "sync/api/string_ordinal.h"
26 26
27 class ExtensionEnableFlow; 27 class ExtensionEnableFlow;
28 class ExtensionService; 28 class ExtensionService;
29 class PrefChangeRegistrar; 29 class PrefChangeRegistrar;
30 class Profile; 30 class Profile;
31 31
32 namespace favicon_base { 32 namespace favicon_base {
33 struct FaviconImageResult; 33 struct FaviconImageResult;
34 } 34 }
35 35
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 // when the app is added to the page (via getAppsCallback or appAdded). 229 // when the app is added to the page (via getAppsCallback or appAdded).
230 std::string highlight_app_id_; 230 std::string highlight_app_id_;
231 231
232 // Used for favicon loading tasks. 232 // Used for favicon loading tasks.
233 base::CancelableTaskTracker cancelable_task_tracker_; 233 base::CancelableTaskTracker cancelable_task_tracker_;
234 234
235 DISALLOW_COPY_AND_ASSIGN(AppLauncherHandler); 235 DISALLOW_COPY_AND_ASSIGN(AppLauncherHandler);
236 }; 236 };
237 237
238 #endif // CHROME_BROWSER_UI_WEBUI_NTP_APP_LAUNCHER_HANDLER_H_ 238 #endif // CHROME_BROWSER_UI_WEBUI_NTP_APP_LAUNCHER_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698