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

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: Addressing comments. 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/managed_user_create_confirm_handler.h" 42 #include "chrome/browser/ui/webui/options/managed_user_create_confirm_handler.h"
43 #include "chrome/browser/ui/webui/options/managed_user_import_handler.h" 43 #include "chrome/browser/ui/webui/options/managed_user_import_handler.h"
44 #include "chrome/browser/ui/webui/options/managed_user_learn_more_handler.h" 44 #include "chrome/browser/ui/webui/options/managed_user_learn_more_handler.h"
45 #include "chrome/browser/ui/webui/options/media_devices_selection_handler.h" 45 #include "chrome/browser/ui/webui/options/media_devices_selection_handler.h"
46 #include "chrome/browser/ui/webui/options/password_manager_handler.h" 46 #include "chrome/browser/ui/webui/options/password_manager_handler.h"
47 #include "chrome/browser/ui/webui/options/reset_profile_settings_handler.h" 47 #include "chrome/browser/ui/webui/options/reset_profile_settings_handler.h"
48 #include "chrome/browser/ui/webui/options/search_engine_manager_handler.h" 48 #include "chrome/browser/ui/webui/options/search_engine_manager_handler.h"
49 #include "chrome/browser/ui/webui/options/startup_pages_handler.h" 49 #include "chrome/browser/ui/webui/options/startup_pages_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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 new ManagedUserCreateConfirmHandler()); 289 new ManagedUserCreateConfirmHandler());
289 AddOptionsPageUIHandler(localized_strings, new ManagedUserImportHandler()); 290 AddOptionsPageUIHandler(localized_strings, new ManagedUserImportHandler());
290 AddOptionsPageUIHandler(localized_strings, new ManagedUserLearnMoreHandler()); 291 AddOptionsPageUIHandler(localized_strings, new ManagedUserLearnMoreHandler());
291 AddOptionsPageUIHandler(localized_strings, new PasswordManagerHandler()); 292 AddOptionsPageUIHandler(localized_strings, new PasswordManagerHandler());
292 AddOptionsPageUIHandler(localized_strings, new ResetProfileSettingsHandler()); 293 AddOptionsPageUIHandler(localized_strings, new ResetProfileSettingsHandler());
293 AddOptionsPageUIHandler(localized_strings, new SearchEngineManagerHandler()); 294 AddOptionsPageUIHandler(localized_strings, new SearchEngineManagerHandler());
294 AddOptionsPageUIHandler(localized_strings, new ImportDataHandler()); 295 AddOptionsPageUIHandler(localized_strings, new ImportDataHandler());
295 AddOptionsPageUIHandler(localized_strings, new StartupPagesHandler()); 296 AddOptionsPageUIHandler(localized_strings, new StartupPagesHandler());
296 AddOptionsPageUIHandler(localized_strings, new SyncSetupHandler( 297 AddOptionsPageUIHandler(localized_strings, new SyncSetupHandler(
297 g_browser_process->profile_manager())); 298 g_browser_process->profile_manager()));
299 AddOptionsPageUIHandler(localized_strings, new WebsiteSettingsHandler());
298 #if defined(OS_CHROMEOS) 300 #if defined(OS_CHROMEOS)
299 AddOptionsPageUIHandler(localized_strings, 301 AddOptionsPageUIHandler(localized_strings,
300 new chromeos::options::AccountsOptionsHandler()); 302 new chromeos::options::AccountsOptionsHandler());
301 AddOptionsPageUIHandler(localized_strings, 303 AddOptionsPageUIHandler(localized_strings,
302 new chromeos::options::BluetoothOptionsHandler()); 304 new chromeos::options::BluetoothOptionsHandler());
303 AddOptionsPageUIHandler(localized_strings, 305 AddOptionsPageUIHandler(localized_strings,
304 new chromeos::options::ConsumerManagementHandler()); 306 new chromeos::options::ConsumerManagementHandler());
305 AddOptionsPageUIHandler(localized_strings, 307 AddOptionsPageUIHandler(localized_strings,
306 new chromeos::options::DateTimeOptionsHandler()); 308 new chromeos::options::DateTimeOptionsHandler());
307 AddOptionsPageUIHandler(localized_strings, 309 AddOptionsPageUIHandler(localized_strings,
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 // Add only if handler's service is enabled. 455 // Add only if handler's service is enabled.
454 if (handler->IsEnabled()) { 456 if (handler->IsEnabled()) {
455 // Add handler to the list and also pass the ownership. 457 // Add handler to the list and also pass the ownership.
456 web_ui()->AddMessageHandler(handler.release()); 458 web_ui()->AddMessageHandler(handler.release());
457 handler_raw->GetLocalizedValues(localized_strings); 459 handler_raw->GetLocalizedValues(localized_strings);
458 handlers_.push_back(handler_raw); 460 handlers_.push_back(handler_raw);
459 } 461 }
460 } 462 }
461 463
462 } // namespace options 464 } // namespace options
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698