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

Side by Side Diff: webkit/renderer/webpreferences_renderer.cc

Issue 18252003: Replace third_party/icu/public with third_party/icu/source (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: roll ICU to 211851 Created 7 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 | Annotate | Revision Log
« no previous file with comments | « webkit/common/webpreferences.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "webkit/renderer/webpreferences_renderer.h" 5 #include "webkit/renderer/webpreferences_renderer.h"
6 6
7 #include "base/strings/utf_string_conversions.h" 7 #include "base/strings/utf_string_conversions.h"
8 #include "third_party/WebKit/public/web/WebKit.h" 8 #include "third_party/WebKit/public/web/WebKit.h"
9 #include "third_party/WebKit/public/web/WebNetworkStateNotifier.h" 9 #include "third_party/WebKit/public/web/WebNetworkStateNotifier.h"
10 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h" 10 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h"
11 #include "third_party/WebKit/public/web/WebSettings.h" 11 #include "third_party/WebKit/public/web/WebSettings.h"
12 #include "third_party/WebKit/public/web/WebView.h" 12 #include "third_party/WebKit/public/web/WebView.h"
13 #include "third_party/WebKit/public/platform/WebString.h" 13 #include "third_party/WebKit/public/platform/WebString.h"
14 #include "third_party/WebKit/public/platform/WebURL.h" 14 #include "third_party/WebKit/public/platform/WebURL.h"
15 #include "third_party/icu/public/common/unicode/uchar.h" 15 #include "third_party/icu/source/common/unicode/uchar.h"
16 #include "third_party/icu/public/common/unicode/uscript.h" 16 #include "third_party/icu/source/common/unicode/uscript.h"
17 #include "webkit/common/webpreferences.h" 17 #include "webkit/common/webpreferences.h"
18 18
19 using WebKit::WebNetworkStateNotifier; 19 using WebKit::WebNetworkStateNotifier;
20 using WebKit::WebRuntimeFeatures; 20 using WebKit::WebRuntimeFeatures;
21 using WebKit::WebSettings; 21 using WebKit::WebSettings;
22 using WebKit::WebString; 22 using WebKit::WebString;
23 using WebKit::WebURL; 23 using WebKit::WebURL;
24 using WebKit::WebView; 24 using WebKit::WebView;
25 25
26 namespace { 26 namespace {
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 prefs.experimental_websocket_enabled); 340 prefs.experimental_websocket_enabled);
341 settings->setPinchVirtualViewportEnabled( 341 settings->setPinchVirtualViewportEnabled(
342 prefs.pinch_virtual_viewport_enabled); 342 prefs.pinch_virtual_viewport_enabled);
343 343
344 settings->setPinchOverlayScrollbarThickness( 344 settings->setPinchOverlayScrollbarThickness(
345 prefs.pinch_overlay_scrollbar_thickness); 345 prefs.pinch_overlay_scrollbar_thickness);
346 } 346 }
347 347
348 348
349 } // namespace webkit_glue 349 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/common/webpreferences.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698