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

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

Issue 10857071: Options: Rename options2 namespace to options. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fix. Created 8 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 | Annotate | Revision Log
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_OPTIONS2_BROWSER_OPTIONS_HANDLER_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS2_BROWSER_OPTIONS_HANDLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS2_BROWSER_OPTIONS_HANDLER_H_ 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS2_BROWSER_OPTIONS_HANDLER_H_
7 7
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
(...skipping 10 matching lines...) Expand all
21 #include "chrome/browser/chromeos/system/pointer_device_observer.h" 21 #include "chrome/browser/chromeos/system/pointer_device_observer.h"
22 #else 22 #else
23 #include "chrome/browser/prefs/pref_set_observer.h" 23 #include "chrome/browser/prefs/pref_set_observer.h"
24 #endif // defined(OS_CHROMEOS) 24 #endif // defined(OS_CHROMEOS)
25 25
26 class AutocompleteController; 26 class AutocompleteController;
27 class CloudPrintSetupHandler; 27 class CloudPrintSetupHandler;
28 class CustomHomePagesTableModel; 28 class CustomHomePagesTableModel;
29 class TemplateURLService; 29 class TemplateURLService;
30 30
31 namespace options2 { 31 namespace options {
32 32
33 // Chrome browser options page UI handler. 33 // Chrome browser options page UI handler.
34 class BrowserOptionsHandler 34 class BrowserOptionsHandler
35 : public OptionsPageUIHandler, 35 : public OptionsPageUIHandler,
36 public CloudPrintSetupHandlerDelegate, 36 public CloudPrintSetupHandlerDelegate,
37 public ProfileSyncServiceObserver, 37 public ProfileSyncServiceObserver,
38 public ui::SelectFileDialog::Listener, 38 public ui::SelectFileDialog::Listener,
39 public ShellIntegration::DefaultWebClientObserver, 39 public ShellIntegration::DefaultWebClientObserver,
40 #if defined(OS_CHROMEOS) 40 #if defined(OS_CHROMEOS)
41 public chromeos::system::PointerDeviceObserver::Observer, 41 public chromeos::system::PointerDeviceObserver::Observer,
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 IntegerPrefMember default_font_size_; 314 IntegerPrefMember default_font_size_;
315 DoublePrefMember default_zoom_level_; 315 DoublePrefMember default_zoom_level_;
316 316
317 #if !defined(OS_CHROMEOS) 317 #if !defined(OS_CHROMEOS)
318 scoped_ptr<PrefSetObserver> proxy_prefs_; 318 scoped_ptr<PrefSetObserver> proxy_prefs_;
319 #endif // !defined(OS_CHROMEOS) 319 #endif // !defined(OS_CHROMEOS)
320 320
321 DISALLOW_COPY_AND_ASSIGN(BrowserOptionsHandler); 321 DISALLOW_COPY_AND_ASSIGN(BrowserOptionsHandler);
322 }; 322 };
323 323
324 } // namespace options2 324 } // namespace options
325 325
326 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS2_BROWSER_OPTIONS_HANDLER_H_ 326 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS2_BROWSER_OPTIONS_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698