| OLD | NEW |
| 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 <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "base/prefs/pref_member.h" | 13 #include "base/prefs/pref_member.h" |
| 14 #include "base/time/time.h" | 14 #include "base/time/time.h" |
| 15 #include "chrome/browser/profiles/profile.h" | 15 #include "chrome/browser/profiles/profile.h" |
| 16 #include "chrome/browser/profiles/profile_manager.h" | 16 #include "chrome/browser/profiles/profile_manager.h" |
| 17 #include "chrome/browser/search_engines/template_url_service_observer.h" | 17 #include "chrome/browser/search_engines/template_url_service_observer.h" |
| 18 #include "chrome/browser/shell_integration.h" | 18 #include "chrome/browser/shell_integration.h" |
| 19 #include "chrome/browser/sync/profile_sync_service_observer.h" | 19 #include "chrome/browser/sync/profile_sync_service_observer.h" |
| 20 #include "chrome/browser/ui/host_desktop.h" |
| 20 #include "chrome/browser/ui/webui/options/options_ui.h" | 21 #include "chrome/browser/ui/webui/options/options_ui.h" |
| 21 #include "ui/base/models/table_model_observer.h" | 22 #include "ui/base/models/table_model_observer.h" |
| 22 #include "ui/shell_dialogs/select_file_dialog.h" | 23 #include "ui/shell_dialogs/select_file_dialog.h" |
| 23 | 24 |
| 24 #if defined(OS_CHROMEOS) | 25 #if defined(OS_CHROMEOS) |
| 25 #include "chrome/browser/chromeos/system/pointer_device_observer.h" | 26 #include "chrome/browser/chromeos/system/pointer_device_observer.h" |
| 26 #else | 27 #else |
| 27 #include "base/prefs/pref_change_registrar.h" | 28 #include "base/prefs/pref_change_registrar.h" |
| 28 #endif // defined(OS_CHROMEOS) | 29 #endif // defined(OS_CHROMEOS) |
| 29 | 30 |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 DoublePrefMember default_zoom_level_; | 345 DoublePrefMember default_zoom_level_; |
| 345 | 346 |
| 346 PrefChangeRegistrar profile_pref_registrar_; | 347 PrefChangeRegistrar profile_pref_registrar_; |
| 347 | 348 |
| 348 DISALLOW_COPY_AND_ASSIGN(BrowserOptionsHandler); | 349 DISALLOW_COPY_AND_ASSIGN(BrowserOptionsHandler); |
| 349 }; | 350 }; |
| 350 | 351 |
| 351 } // namespace options | 352 } // namespace options |
| 352 | 353 |
| 353 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_BROWSER_OPTIONS_HANDLER_H_ | 354 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_BROWSER_OPTIONS_HANDLER_H_ |
| OLD | NEW |