| 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 29 matching lines...) Expand all Loading... |
| 40 #include "chrome/browser/ui/webui/options/language_dictionary_overlay_handler.h" | 40 #include "chrome/browser/ui/webui/options/language_dictionary_overlay_handler.h" |
| 41 #include "chrome/browser/ui/webui/options/language_options_handler.h" | 41 #include "chrome/browser/ui/webui/options/language_options_handler.h" |
| 42 #include "chrome/browser/ui/webui/options/manage_profile_handler.h" | 42 #include "chrome/browser/ui/webui/options/manage_profile_handler.h" |
| 43 #include "chrome/browser/ui/webui/options/media_devices_selection_handler.h" | 43 #include "chrome/browser/ui/webui/options/media_devices_selection_handler.h" |
| 44 #include "chrome/browser/ui/webui/options/password_manager_handler.h" | 44 #include "chrome/browser/ui/webui/options/password_manager_handler.h" |
| 45 #include "chrome/browser/ui/webui/options/reset_profile_settings_handler.h" | 45 #include "chrome/browser/ui/webui/options/reset_profile_settings_handler.h" |
| 46 #include "chrome/browser/ui/webui/options/search_engine_manager_handler.h" | 46 #include "chrome/browser/ui/webui/options/search_engine_manager_handler.h" |
| 47 #include "chrome/browser/ui/webui/options/startup_pages_handler.h" | 47 #include "chrome/browser/ui/webui/options/startup_pages_handler.h" |
| 48 #include "chrome/browser/ui/webui/options/sync_setup_handler.h" | 48 #include "chrome/browser/ui/webui/options/sync_setup_handler.h" |
| 49 #include "chrome/browser/ui/webui/theme_source.h" | 49 #include "chrome/browser/ui/webui/theme_source.h" |
| 50 #include "chrome/common/features.h" |
| 50 #include "chrome/common/url_constants.h" | 51 #include "chrome/common/url_constants.h" |
| 51 #include "chrome/grit/generated_resources.h" | 52 #include "chrome/grit/generated_resources.h" |
| 52 #include "chrome/grit/locale_settings.h" | 53 #include "chrome/grit/locale_settings.h" |
| 53 #include "components/omnibox/browser/autocomplete_match.h" | 54 #include "components/omnibox/browser/autocomplete_match.h" |
| 54 #include "components/omnibox/browser/autocomplete_result.h" | 55 #include "components/omnibox/browser/autocomplete_result.h" |
| 55 #include "content/public/browser/notification_types.h" | 56 #include "content/public/browser/notification_types.h" |
| 56 #include "content/public/browser/render_frame_host.h" | 57 #include "content/public/browser/render_frame_host.h" |
| 57 #include "content/public/browser/url_data_source.h" | 58 #include "content/public/browser/url_data_source.h" |
| 58 #include "content/public/browser/web_contents.h" | 59 #include "content/public/browser/web_contents.h" |
| 59 #include "content/public/browser/web_contents_delegate.h" | 60 #include "content/public/browser/web_contents_delegate.h" |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 #include "chrome/browser/ui/webui/options/chromeos/power_handler.h" | 94 #include "chrome/browser/ui/webui/options/chromeos/power_handler.h" |
| 94 #include "chrome/browser/ui/webui/options/chromeos/proxy_handler.h" | 95 #include "chrome/browser/ui/webui/options/chromeos/proxy_handler.h" |
| 95 #include "chrome/browser/ui/webui/options/chromeos/stats_options_handler.h" | 96 #include "chrome/browser/ui/webui/options/chromeos/stats_options_handler.h" |
| 96 #include "chrome/browser/ui/webui/options/chromeos/user_image_source.h" | 97 #include "chrome/browser/ui/webui/options/chromeos/user_image_source.h" |
| 97 #endif | 98 #endif |
| 98 | 99 |
| 99 #if defined(USE_NSS_CERTS) | 100 #if defined(USE_NSS_CERTS) |
| 100 #include "chrome/browser/ui/webui/options/certificate_manager_handler.h" | 101 #include "chrome/browser/ui/webui/options/certificate_manager_handler.h" |
| 101 #endif | 102 #endif |
| 102 | 103 |
| 103 #if defined(ENABLE_GOOGLE_NOW) | 104 #if BUILDFLAG(ENABLE_GOOGLE_NOW) |
| 104 #include "chrome/browser/ui/webui/options/geolocation_options_handler.h" | 105 #include "chrome/browser/ui/webui/options/geolocation_options_handler.h" |
| 105 #endif | 106 #endif |
| 106 | 107 |
| 107 using content::RenderViewHost; | 108 using content::RenderViewHost; |
| 108 | 109 |
| 109 namespace { | 110 namespace { |
| 110 | 111 |
| 111 const char kLocalizedStringsFile[] = "strings.js"; | 112 const char kLocalizedStringsFile[] = "strings.js"; |
| 112 const char kOptionsBundleJsFile[] = "options_bundle.js"; | 113 const char kOptionsBundleJsFile[] = "options_bundle.js"; |
| 113 | 114 |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 | 273 |
| 273 BrowserOptionsHandler* browser_options_handler = new BrowserOptionsHandler(); | 274 BrowserOptionsHandler* browser_options_handler = new BrowserOptionsHandler(); |
| 274 AddOptionsPageUIHandler(localized_strings, browser_options_handler); | 275 AddOptionsPageUIHandler(localized_strings, browser_options_handler); |
| 275 | 276 |
| 276 AddOptionsPageUIHandler(localized_strings, new ClearBrowserDataHandler()); | 277 AddOptionsPageUIHandler(localized_strings, new ClearBrowserDataHandler()); |
| 277 AddOptionsPageUIHandler(localized_strings, new ContentSettingsHandler()); | 278 AddOptionsPageUIHandler(localized_strings, new ContentSettingsHandler()); |
| 278 AddOptionsPageUIHandler(localized_strings, new CookiesViewHandler()); | 279 AddOptionsPageUIHandler(localized_strings, new CookiesViewHandler()); |
| 279 AddOptionsPageUIHandler(localized_strings, new CreateProfileHandler()); | 280 AddOptionsPageUIHandler(localized_strings, new CreateProfileHandler()); |
| 280 AddOptionsPageUIHandler(localized_strings, new EasyUnlockHandler()); | 281 AddOptionsPageUIHandler(localized_strings, new EasyUnlockHandler()); |
| 281 AddOptionsPageUIHandler(localized_strings, new FontSettingsHandler()); | 282 AddOptionsPageUIHandler(localized_strings, new FontSettingsHandler()); |
| 282 #if defined(ENABLE_GOOGLE_NOW) | 283 #if BUILDFLAG(ENABLE_GOOGLE_NOW) |
| 283 AddOptionsPageUIHandler(localized_strings, new GeolocationOptionsHandler()); | 284 AddOptionsPageUIHandler(localized_strings, new GeolocationOptionsHandler()); |
| 284 #endif | 285 #endif |
| 285 AddOptionsPageUIHandler(localized_strings, new options::HelpOverlayHandler()); | 286 AddOptionsPageUIHandler(localized_strings, new options::HelpOverlayHandler()); |
| 286 AddOptionsPageUIHandler(localized_strings, new HomePageOverlayHandler()); | 287 AddOptionsPageUIHandler(localized_strings, new HomePageOverlayHandler()); |
| 287 AddOptionsPageUIHandler(localized_strings, | 288 AddOptionsPageUIHandler(localized_strings, |
| 288 new MediaDevicesSelectionHandler()); | 289 new MediaDevicesSelectionHandler()); |
| 289 #if defined(OS_CHROMEOS) | 290 #if defined(OS_CHROMEOS) |
| 290 AddOptionsPageUIHandler(localized_strings, | 291 AddOptionsPageUIHandler(localized_strings, |
| 291 new chromeos::options::CrosLanguageOptionsHandler()); | 292 new chromeos::options::CrosLanguageOptionsHandler()); |
| 292 #else | 293 #else |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 // Add only if handler's service is enabled. | 477 // Add only if handler's service is enabled. |
| 477 if (handler->IsEnabled()) { | 478 if (handler->IsEnabled()) { |
| 478 // Add handler to the list and also pass the ownership. | 479 // Add handler to the list and also pass the ownership. |
| 479 web_ui()->AddMessageHandler(handler.release()); | 480 web_ui()->AddMessageHandler(handler.release()); |
| 480 handler_raw->GetLocalizedValues(localized_strings); | 481 handler_raw->GetLocalizedValues(localized_strings); |
| 481 handlers_.push_back(handler_raw); | 482 handlers_.push_back(handler_raw); |
| 482 } | 483 } |
| 483 } | 484 } |
| 484 | 485 |
| 485 } // namespace options | 486 } // namespace options |
| OLD | NEW |