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 27 matching lines...) Expand all Loading... |
38 #include "chrome/browser/ui/webui/options/home_page_overlay_handler.h" | 38 #include "chrome/browser/ui/webui/options/home_page_overlay_handler.h" |
39 #include "chrome/browser/ui/webui/options/import_data_handler.h" | 39 #include "chrome/browser/ui/webui/options/import_data_handler.h" |
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_options_handler.h" |
49 #include "chrome/browser/ui/webui/theme_source.h" | 49 #include "chrome/browser/ui/webui/theme_source.h" |
50 #include "chrome/common/url_constants.h" | 50 #include "chrome/common/url_constants.h" |
51 #include "chrome/grit/generated_resources.h" | 51 #include "chrome/grit/generated_resources.h" |
52 #include "chrome/grit/locale_settings.h" | 52 #include "chrome/grit/locale_settings.h" |
53 #include "components/omnibox/browser/autocomplete_match.h" | 53 #include "components/omnibox/browser/autocomplete_match.h" |
54 #include "components/omnibox/browser/autocomplete_result.h" | 54 #include "components/omnibox/browser/autocomplete_result.h" |
55 #include "content/public/browser/notification_types.h" | 55 #include "content/public/browser/notification_types.h" |
56 #include "content/public/browser/render_frame_host.h" | 56 #include "content/public/browser/render_frame_host.h" |
57 #include "content/public/browser/url_data_source.h" | 57 #include "content/public/browser/url_data_source.h" |
58 #include "content/public/browser/web_contents.h" | 58 #include "content/public/browser/web_contents.h" |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 AddOptionsPageUIHandler(localized_strings, new SearchEngineManagerHandler()); | 300 AddOptionsPageUIHandler(localized_strings, new SearchEngineManagerHandler()); |
301 AddOptionsPageUIHandler(localized_strings, new ImportDataHandler()); | 301 AddOptionsPageUIHandler(localized_strings, new ImportDataHandler()); |
302 AddOptionsPageUIHandler(localized_strings, new StartupPagesHandler()); | 302 AddOptionsPageUIHandler(localized_strings, new StartupPagesHandler()); |
303 #if defined(ENABLE_SUPERVISED_USERS) | 303 #if defined(ENABLE_SUPERVISED_USERS) |
304 AddOptionsPageUIHandler(localized_strings, | 304 AddOptionsPageUIHandler(localized_strings, |
305 new SupervisedUserCreateConfirmHandler()); | 305 new SupervisedUserCreateConfirmHandler()); |
306 AddOptionsPageUIHandler(localized_strings, new SupervisedUserImportHandler()); | 306 AddOptionsPageUIHandler(localized_strings, new SupervisedUserImportHandler()); |
307 AddOptionsPageUIHandler(localized_strings, | 307 AddOptionsPageUIHandler(localized_strings, |
308 new SupervisedUserLearnMoreHandler()); | 308 new SupervisedUserLearnMoreHandler()); |
309 #endif | 309 #endif |
310 AddOptionsPageUIHandler(localized_strings, new SyncSetupHandler()); | 310 AddOptionsPageUIHandler(localized_strings, new SyncOptionsHandler(web_ui)); |
311 #if defined(OS_CHROMEOS) | 311 #if defined(OS_CHROMEOS) |
312 AddOptionsPageUIHandler(localized_strings, | 312 AddOptionsPageUIHandler(localized_strings, |
313 new chromeos::options::AccountsOptionsHandler()); | 313 new chromeos::options::AccountsOptionsHandler()); |
314 AddOptionsPageUIHandler(localized_strings, | 314 AddOptionsPageUIHandler(localized_strings, |
315 new chromeos::options::BluetoothOptionsHandler()); | 315 new chromeos::options::BluetoothOptionsHandler()); |
316 AddOptionsPageUIHandler(localized_strings, | 316 AddOptionsPageUIHandler(localized_strings, |
317 new chromeos::options::DateTimeOptionsHandler()); | 317 new chromeos::options::DateTimeOptionsHandler()); |
318 AddOptionsPageUIHandler(localized_strings, | 318 AddOptionsPageUIHandler(localized_strings, |
319 new chromeos::options::DisplayOptionsHandler()); | 319 new chromeos::options::DisplayOptionsHandler()); |
320 AddOptionsPageUIHandler(localized_strings, | 320 AddOptionsPageUIHandler(localized_strings, |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
476 // Add only if handler's service is enabled. | 476 // Add only if handler's service is enabled. |
477 if (handler->IsEnabled()) { | 477 if (handler->IsEnabled()) { |
478 // Add handler to the list and also pass the ownership. | 478 // Add handler to the list and also pass the ownership. |
479 web_ui()->AddMessageHandler(handler.release()); | 479 web_ui()->AddMessageHandler(handler.release()); |
480 handler_raw->GetLocalizedValues(localized_strings); | 480 handler_raw->GetLocalizedValues(localized_strings); |
481 handlers_.push_back(handler_raw); | 481 handlers_.push_back(handler_raw); |
482 } | 482 } |
483 } | 483 } |
484 | 484 |
485 } // namespace options | 485 } // namespace options |
OLD | NEW |