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

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

Issue 15949029: Use a direct include of utf_string_conversions.h in chrome/browser/ui/, part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 6 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 | Annotate | Revision Log
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/browser_options_handler.h" 5 #include "chrome/browser/ui/webui/options/browser_options_handler.h"
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/bind.h" 11 #include "base/bind.h"
12 #include "base/bind_helpers.h" 12 #include "base/bind_helpers.h"
13 #include "base/command_line.h" 13 #include "base/command_line.h"
14 #include "base/memory/singleton.h" 14 #include "base/memory/singleton.h"
15 #include "base/metrics/histogram.h" 15 #include "base/metrics/histogram.h"
16 #include "base/path_service.h" 16 #include "base/path_service.h"
17 #include "base/prefs/pref_service.h" 17 #include "base/prefs/pref_service.h"
18 #include "base/stl_util.h" 18 #include "base/stl_util.h"
19 #include "base/strings/string_number_conversions.h" 19 #include "base/strings/string_number_conversions.h"
20 #include "base/utf_string_conversions.h" 20 #include "base/strings/utf_string_conversions.h"
21 #include "base/value_conversions.h" 21 #include "base/value_conversions.h"
22 #include "base/values.h" 22 #include "base/values.h"
23 #include "chrome/browser/auto_launch_trial.h" 23 #include "chrome/browser/auto_launch_trial.h"
24 #include "chrome/browser/browser_process.h" 24 #include "chrome/browser/browser_process.h"
25 #include "chrome/browser/chrome_page_zoom.h" 25 #include "chrome/browser/chrome_page_zoom.h"
26 #include "chrome/browser/custom_home_pages_table_model.h" 26 #include "chrome/browser/custom_home_pages_table_model.h"
27 #include "chrome/browser/download/download_prefs.h" 27 #include "chrome/browser/download/download_prefs.h"
28 #include "chrome/browser/gpu/gpu_mode_manager.h" 28 #include "chrome/browser/gpu/gpu_mode_manager.h"
29 #include "chrome/browser/lifetime/application_lifetime.h" 29 #include "chrome/browser/lifetime/application_lifetime.h"
30 #include "chrome/browser/net/url_fixer_upper.h" 30 #include "chrome/browser/net/url_fixer_upper.h"
(...skipping 1706 matching lines...) Expand 10 before | Expand all | Expand 10 after
1737 base::FundamentalValue disabled(profile_pref_registrar_.IsManaged() || 1737 base::FundamentalValue disabled(profile_pref_registrar_.IsManaged() ||
1738 is_extension_controlled); 1738 is_extension_controlled);
1739 base::FundamentalValue extension_controlled(is_extension_controlled); 1739 base::FundamentalValue extension_controlled(is_extension_controlled);
1740 web_ui()->CallJavascriptFunction("BrowserOptions.setupProxySettingsSection", 1740 web_ui()->CallJavascriptFunction("BrowserOptions.setupProxySettingsSection",
1741 disabled, extension_controlled); 1741 disabled, extension_controlled);
1742 1742
1743 #endif // !defined(OS_CHROMEOS) 1743 #endif // !defined(OS_CHROMEOS)
1744 } 1744 }
1745 1745
1746 } // namespace options 1746 } // namespace options
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698