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

Side by Side Diff: chrome/browser/dom_ui/options/advanced_options_handler.cc

Issue 5875005: Cleanup: Remove unneeded includes of notification_service.h.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: put includes in right order Created 10 years 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/dom_ui/options/advanced_options_handler.h" 5 #include "chrome/browser/dom_ui/options/advanced_options_handler.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "app/l10n_util.h" 9 #include "app/l10n_util.h"
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 10 matching lines...) Expand all
21 #include "chrome/browser/prefs/pref_service.h" 21 #include "chrome/browser/prefs/pref_service.h"
22 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service.h" 22 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service.h"
23 #include "chrome/browser/printing/cloud_print/cloud_print_setup_flow.h" 23 #include "chrome/browser/printing/cloud_print/cloud_print_setup_flow.h"
24 #include "chrome/browser/printing/cloud_print/cloud_print_url.h" 24 #include "chrome/browser/printing/cloud_print/cloud_print_url.h"
25 #include "chrome/browser/profiles/profile.h" 25 #include "chrome/browser/profiles/profile.h"
26 #include "chrome/browser/tab_contents/tab_contents.h" 26 #include "chrome/browser/tab_contents/tab_contents.h"
27 #include "chrome/browser/tab_contents/tab_contents_view.h" 27 #include "chrome/browser/tab_contents/tab_contents_view.h"
28 #include "chrome/browser/ui/options/options_util.h" 28 #include "chrome/browser/ui/options/options_util.h"
29 #include "chrome/browser/ui/options/options_window.h" 29 #include "chrome/browser/ui/options/options_window.h"
30 #include "chrome/common/chrome_switches.h" 30 #include "chrome/common/chrome_switches.h"
31 #include "chrome/common/notification_service.h" 31 #include "chrome/common/notification_details.h"
32 #include "chrome/common/notification_type.h" 32 #include "chrome/common/notification_type.h"
33 #include "chrome/common/pref_names.h" 33 #include "chrome/common/pref_names.h"
34 #include "chrome/common/url_constants.h" 34 #include "chrome/common/url_constants.h"
35 #include "grit/chromium_strings.h" 35 #include "grit/chromium_strings.h"
36 #include "grit/generated_resources.h" 36 #include "grit/generated_resources.h"
37 #include "grit/locale_settings.h" 37 #include "grit/locale_settings.h"
38 38
39 #if !defined(OS_CHROMEOS) 39 #if !defined(OS_CHROMEOS)
40 #include "chrome/browser/browser_process.h" 40 #include "chrome/browser/browser_process.h"
41 #include "chrome/browser/dom_ui/options/advanced_options_utils.h" 41 #include "chrome/browser/dom_ui/options/advanced_options_utils.h"
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after
570 FundamentalValue useSSL3Value(useSSL3Setting); 570 FundamentalValue useSSL3Value(useSSL3Setting);
571 dom_ui_->CallJavascriptFunction( 571 dom_ui_->CallJavascriptFunction(
572 L"options.AdvancedOptions.SetUseSSL3CheckboxState", 572 L"options.AdvancedOptions.SetUseSSL3CheckboxState",
573 useSSL3Value, disabledValue); 573 useSSL3Value, disabledValue);
574 FundamentalValue useTLS1Value(useTLS1Setting); 574 FundamentalValue useTLS1Value(useTLS1Setting);
575 dom_ui_->CallJavascriptFunction( 575 dom_ui_->CallJavascriptFunction(
576 L"options.AdvancedOptions.SetUseTLS1CheckboxState", 576 L"options.AdvancedOptions.SetUseTLS1CheckboxState",
577 useTLS1Value, disabledValue); 577 useTLS1Value, disabledValue);
578 } 578 }
579 #endif 579 #endif
OLDNEW
« no previous file with comments | « chrome/browser/dom_ui/options/about_page_handler.cc ('k') | chrome/browser/dom_ui/options/core_options_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698