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

Side by Side Diff: chrome/browser/ui/webui/options/browser_options_handler.h

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 years 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_OPTIONS_BROWSER_OPTIONS_HANDLER_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_BROWSER_OPTIONS_HANDLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_BROWSER_OPTIONS_HANDLER_H_ 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_BROWSER_OPTIONS_HANDLER_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 23 matching lines...) Expand all
34 #include "ui/base/models/table_model_observer.h" 34 #include "ui/base/models/table_model_observer.h"
35 #include "ui/shell_dialogs/select_file_dialog.h" 35 #include "ui/shell_dialogs/select_file_dialog.h"
36 36
37 #if defined(OS_CHROMEOS) 37 #if defined(OS_CHROMEOS)
38 #include "chrome/browser/chromeos/system/pointer_device_observer.h" 38 #include "chrome/browser/chromeos/system/pointer_device_observer.h"
39 #include "chrome/browser/ui/app_list/arc/arc_app_list_prefs.h" 39 #include "chrome/browser/ui/app_list/arc/arc_app_list_prefs.h"
40 #else // defined(OS_CHROMEOS) 40 #else // defined(OS_CHROMEOS)
41 #include "chrome/browser/shell_integration.h" 41 #include "chrome/browser/shell_integration.h"
42 #endif // !defined(OS_CHROMEOS) 42 #endif // !defined(OS_CHROMEOS)
43 43
44 class AutocompleteController;
45 class CloudPrintSetupHandler;
46 class CustomHomePagesTableModel;
47 class TemplateURLService; 44 class TemplateURLService;
48 45
49 namespace base { 46 namespace base {
50 class Value; 47 class Value;
51 } 48 }
52 49
53 namespace policy { 50 namespace policy {
54 class PolicyChangeRegistrar; 51 class PolicyChangeRegistrar;
55 } 52 }
56 53
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 441
445 // Used to get WeakPtr to self for use on the UI thread. 442 // Used to get WeakPtr to self for use on the UI thread.
446 base::WeakPtrFactory<BrowserOptionsHandler> weak_ptr_factory_; 443 base::WeakPtrFactory<BrowserOptionsHandler> weak_ptr_factory_;
447 444
448 DISALLOW_COPY_AND_ASSIGN(BrowserOptionsHandler); 445 DISALLOW_COPY_AND_ASSIGN(BrowserOptionsHandler);
449 }; 446 };
450 447
451 } // namespace options 448 } // namespace options
452 449
453 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_BROWSER_OPTIONS_HANDLER_H_ 450 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_BROWSER_OPTIONS_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698