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

Side by Side Diff: chrome/browser/ui/webui/options/options_ui.cc

Issue 380893005: Add an option page for searching and managing resources and permissions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Last pass. Created 6 years, 5 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
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 #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
40 #include "chrome/browser/ui/webui/options/language_options_handler.h" 40 #include "chrome/browser/ui/webui/options/language_options_handler.h"
41 #include "chrome/browser/ui/webui/options/manage_profile_handler.h" 41 #include "chrome/browser/ui/webui/options/manage_profile_handler.h"
42 #include "chrome/browser/ui/webui/options/media_devices_selection_handler.h" 42 #include "chrome/browser/ui/webui/options/media_devices_selection_handler.h"
43 #include "chrome/browser/ui/webui/options/password_manager_handler.h" 43 #include "chrome/browser/ui/webui/options/password_manager_handler.h"
44 #include "chrome/browser/ui/webui/options/reset_profile_settings_handler.h" 44 #include "chrome/browser/ui/webui/options/reset_profile_settings_handler.h"
45 #include "chrome/browser/ui/webui/options/search_engine_manager_handler.h" 45 #include "chrome/browser/ui/webui/options/search_engine_manager_handler.h"
46 #include "chrome/browser/ui/webui/options/startup_pages_handler.h" 46 #include "chrome/browser/ui/webui/options/startup_pages_handler.h"
47 #include "chrome/browser/ui/webui/options/supervised_user_create_confirm_handler .h" 47 #include "chrome/browser/ui/webui/options/supervised_user_create_confirm_handler .h"
48 #include "chrome/browser/ui/webui/options/supervised_user_import_handler.h" 48 #include "chrome/browser/ui/webui/options/supervised_user_import_handler.h"
49 #include "chrome/browser/ui/webui/options/supervised_user_learn_more_handler.h" 49 #include "chrome/browser/ui/webui/options/supervised_user_learn_more_handler.h"
50 #include "chrome/browser/ui/webui/options/website_settings_handler.h"
50 #include "chrome/browser/ui/webui/sync_setup_handler.h" 51 #include "chrome/browser/ui/webui/sync_setup_handler.h"
51 #include "chrome/browser/ui/webui/theme_source.h" 52 #include "chrome/browser/ui/webui/theme_source.h"
52 #include "chrome/common/url_constants.h" 53 #include "chrome/common/url_constants.h"
53 #include "content/public/browser/notification_types.h" 54 #include "content/public/browser/notification_types.h"
54 #include "content/public/browser/render_frame_host.h" 55 #include "content/public/browser/render_frame_host.h"
55 #include "content/public/browser/url_data_source.h" 56 #include "content/public/browser/url_data_source.h"
56 #include "content/public/browser/web_contents.h" 57 #include "content/public/browser/web_contents.h"
57 #include "content/public/browser/web_contents_delegate.h" 58 #include "content/public/browser/web_contents_delegate.h"
58 #include "content/public/browser/web_ui.h" 59 #include "content/public/browser/web_ui.h"
59 #include "grit/chromium_strings.h" 60 #include "grit/chromium_strings.h"
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 AddOptionsPageUIHandler(localized_strings, new SearchEngineManagerHandler()); 290 AddOptionsPageUIHandler(localized_strings, new SearchEngineManagerHandler());
290 AddOptionsPageUIHandler(localized_strings, new ImportDataHandler()); 291 AddOptionsPageUIHandler(localized_strings, new ImportDataHandler());
291 AddOptionsPageUIHandler(localized_strings, new StartupPagesHandler()); 292 AddOptionsPageUIHandler(localized_strings, new StartupPagesHandler());
292 AddOptionsPageUIHandler(localized_strings, 293 AddOptionsPageUIHandler(localized_strings,
293 new SupervisedUserCreateConfirmHandler()); 294 new SupervisedUserCreateConfirmHandler());
294 AddOptionsPageUIHandler(localized_strings, new SupervisedUserImportHandler()); 295 AddOptionsPageUIHandler(localized_strings, new SupervisedUserImportHandler());
295 AddOptionsPageUIHandler(localized_strings, 296 AddOptionsPageUIHandler(localized_strings,
296 new SupervisedUserLearnMoreHandler()); 297 new SupervisedUserLearnMoreHandler());
297 AddOptionsPageUIHandler(localized_strings, new SyncSetupHandler( 298 AddOptionsPageUIHandler(localized_strings, new SyncSetupHandler(
298 g_browser_process->profile_manager())); 299 g_browser_process->profile_manager()));
300 AddOptionsPageUIHandler(localized_strings, new WebsiteSettingsHandler());
299 #if defined(OS_CHROMEOS) 301 #if defined(OS_CHROMEOS)
300 AddOptionsPageUIHandler(localized_strings, 302 AddOptionsPageUIHandler(localized_strings,
301 new chromeos::options::AccountsOptionsHandler()); 303 new chromeos::options::AccountsOptionsHandler());
302 AddOptionsPageUIHandler(localized_strings, 304 AddOptionsPageUIHandler(localized_strings,
303 new chromeos::options::BluetoothOptionsHandler()); 305 new chromeos::options::BluetoothOptionsHandler());
304 AddOptionsPageUIHandler(localized_strings, 306 AddOptionsPageUIHandler(localized_strings,
305 new chromeos::options::ConsumerManagementHandler()); 307 new chromeos::options::ConsumerManagementHandler());
306 AddOptionsPageUIHandler(localized_strings, 308 AddOptionsPageUIHandler(localized_strings,
307 new chromeos::options::DateTimeOptionsHandler()); 309 new chromeos::options::DateTimeOptionsHandler());
308 AddOptionsPageUIHandler(localized_strings, 310 AddOptionsPageUIHandler(localized_strings,
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 // Add only if handler's service is enabled. 456 // Add only if handler's service is enabled.
455 if (handler->IsEnabled()) { 457 if (handler->IsEnabled()) {
456 // Add handler to the list and also pass the ownership. 458 // Add handler to the list and also pass the ownership.
457 web_ui()->AddMessageHandler(handler.release()); 459 web_ui()->AddMessageHandler(handler.release());
458 handler_raw->GetLocalizedValues(localized_strings); 460 handler_raw->GetLocalizedValues(localized_strings);
459 handlers_.push_back(handler_raw); 461 handlers_.push_back(handler_raw);
460 } 462 }
461 } 463 }
462 464
463 } // namespace options 465 } // namespace options
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698