| 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 #include "chrome/browser/ui/webui/options/options_ui.h" | 5 #include "chrome/browser/ui/webui/options/options_ui.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #include "chrome/browser/profiles/profile.h" | 24 #include "chrome/browser/profiles/profile.h" |
| 25 #include "chrome/browser/ui/webui/metrics_handler.h" | 25 #include "chrome/browser/ui/webui/metrics_handler.h" |
| 26 #include "chrome/browser/ui/webui/options/autofill_options_handler.h" | 26 #include "chrome/browser/ui/webui/options/autofill_options_handler.h" |
| 27 #include "chrome/browser/ui/webui/options/automatic_settings_reset_handler.h" | 27 #include "chrome/browser/ui/webui/options/automatic_settings_reset_handler.h" |
| 28 #include "chrome/browser/ui/webui/options/browser_options_handler.h" | 28 #include "chrome/browser/ui/webui/options/browser_options_handler.h" |
| 29 #include "chrome/browser/ui/webui/options/clear_browser_data_handler.h" | 29 #include "chrome/browser/ui/webui/options/clear_browser_data_handler.h" |
| 30 #include "chrome/browser/ui/webui/options/content_settings_handler.h" | 30 #include "chrome/browser/ui/webui/options/content_settings_handler.h" |
| 31 #include "chrome/browser/ui/webui/options/cookies_view_handler.h" | 31 #include "chrome/browser/ui/webui/options/cookies_view_handler.h" |
| 32 #include "chrome/browser/ui/webui/options/core_options_handler.h" | 32 #include "chrome/browser/ui/webui/options/core_options_handler.h" |
| 33 #include "chrome/browser/ui/webui/options/create_profile_handler.h" | 33 #include "chrome/browser/ui/webui/options/create_profile_handler.h" |
| 34 #include "chrome/browser/ui/webui/options/easy_unlock_handler.h" |
| 34 #include "chrome/browser/ui/webui/options/font_settings_handler.h" | 35 #include "chrome/browser/ui/webui/options/font_settings_handler.h" |
| 35 #include "chrome/browser/ui/webui/options/handler_options_handler.h" | 36 #include "chrome/browser/ui/webui/options/handler_options_handler.h" |
| 36 #include "chrome/browser/ui/webui/options/home_page_overlay_handler.h" | 37 #include "chrome/browser/ui/webui/options/home_page_overlay_handler.h" |
| 37 #include "chrome/browser/ui/webui/options/import_data_handler.h" | 38 #include "chrome/browser/ui/webui/options/import_data_handler.h" |
| 38 #include "chrome/browser/ui/webui/options/language_dictionary_overlay_handler.h" | 39 #include "chrome/browser/ui/webui/options/language_dictionary_overlay_handler.h" |
| 39 #include "chrome/browser/ui/webui/options/language_options_handler.h" | 40 #include "chrome/browser/ui/webui/options/language_options_handler.h" |
| 40 #include "chrome/browser/ui/webui/options/manage_profile_handler.h" | 41 #include "chrome/browser/ui/webui/options/manage_profile_handler.h" |
| 41 #include "chrome/browser/ui/webui/options/media_devices_selection_handler.h" | 42 #include "chrome/browser/ui/webui/options/media_devices_selection_handler.h" |
| 42 #include "chrome/browser/ui/webui/options/password_manager_handler.h" | 43 #include "chrome/browser/ui/webui/options/password_manager_handler.h" |
| 43 #include "chrome/browser/ui/webui/options/reset_profile_settings_handler.h" | 44 #include "chrome/browser/ui/webui/options/reset_profile_settings_handler.h" |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 new AutomaticSettingsResetHandler()); | 267 new AutomaticSettingsResetHandler()); |
| 267 | 268 |
| 268 BrowserOptionsHandler* browser_options_handler = new BrowserOptionsHandler(); | 269 BrowserOptionsHandler* browser_options_handler = new BrowserOptionsHandler(); |
| 269 AddOptionsPageUIHandler(localized_strings, browser_options_handler); | 270 AddOptionsPageUIHandler(localized_strings, browser_options_handler); |
| 270 | 271 |
| 271 AddOptionsPageUIHandler(localized_strings, new ClearBrowserDataHandler()); | 272 AddOptionsPageUIHandler(localized_strings, new ClearBrowserDataHandler()); |
| 272 AddOptionsPageUIHandler(localized_strings, new ContentSettingsHandler()); | 273 AddOptionsPageUIHandler(localized_strings, new ContentSettingsHandler()); |
| 273 AddOptionsPageUIHandler(localized_strings, new CookiesViewHandler()); | 274 AddOptionsPageUIHandler(localized_strings, new CookiesViewHandler()); |
| 274 AddOptionsPageUIHandler(localized_strings, new CreateProfileHandler()); | 275 AddOptionsPageUIHandler(localized_strings, new CreateProfileHandler()); |
| 275 AddOptionsPageUIHandler(localized_strings, new FontSettingsHandler()); | 276 AddOptionsPageUIHandler(localized_strings, new FontSettingsHandler()); |
| 277 AddOptionsPageUIHandler(localized_strings, new EasyUnlockHandler()); |
| 276 #if defined(ENABLE_GOOGLE_NOW) | 278 #if defined(ENABLE_GOOGLE_NOW) |
| 277 AddOptionsPageUIHandler(localized_strings, new GeolocationOptionsHandler()); | 279 AddOptionsPageUIHandler(localized_strings, new GeolocationOptionsHandler()); |
| 278 #endif | 280 #endif |
| 279 AddOptionsPageUIHandler(localized_strings, new HomePageOverlayHandler()); | 281 AddOptionsPageUIHandler(localized_strings, new HomePageOverlayHandler()); |
| 280 AddOptionsPageUIHandler(localized_strings, | 282 AddOptionsPageUIHandler(localized_strings, |
| 281 new MediaDevicesSelectionHandler()); | 283 new MediaDevicesSelectionHandler()); |
| 282 #if defined(OS_CHROMEOS) | 284 #if defined(OS_CHROMEOS) |
| 283 AddOptionsPageUIHandler(localized_strings, | 285 AddOptionsPageUIHandler(localized_strings, |
| 284 new chromeos::options::CrosLanguageOptionsHandler()); | 286 new chromeos::options::CrosLanguageOptionsHandler()); |
| 285 #else | 287 #else |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 // Add only if handler's service is enabled. | 466 // Add only if handler's service is enabled. |
| 465 if (handler->IsEnabled()) { | 467 if (handler->IsEnabled()) { |
| 466 // Add handler to the list and also pass the ownership. | 468 // Add handler to the list and also pass the ownership. |
| 467 web_ui()->AddMessageHandler(handler.release()); | 469 web_ui()->AddMessageHandler(handler.release()); |
| 468 handler_raw->GetLocalizedValues(localized_strings); | 470 handler_raw->GetLocalizedValues(localized_strings); |
| 469 handlers_.push_back(handler_raw); | 471 handlers_.push_back(handler_raw); |
| 470 } | 472 } |
| 471 } | 473 } |
| 472 | 474 |
| 473 } // namespace options | 475 } // namespace options |
| OLD | NEW |