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

Side by Side Diff: webkit/glue/webpreferences.cc

Issue 8787003: Update these includes to use the new header locations (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 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
« no previous file with comments | « webkit/glue/webkitplatformsupport_impl.cc ('k') | webkit/glue/websocketstreamhandle_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/glue/webpreferences.h" 5 #include "webkit/glue/webpreferences.h"
6 6
7 #include <unicode/uchar.h> 7 #include <unicode/uchar.h>
8 8
9 #include "base/string_util.h" 9 #include "base/string_util.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositor.h" 11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositor.h"
12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNetworkStateNotifi er.h" 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNetworkStateNotifi er.h"
13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRuntimeFeatures.h" 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRuntimeFeatures.h"
14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h"
15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSettings.h" 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSettings.h"
16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h" 16 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h"
17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURL.h" 17 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURL.h"
18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" 18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
19 #include "webkit/glue/webkit_glue.h" 19 #include "webkit/glue/webkit_glue.h"
20 20
21 using WebKit::WebNetworkStateNotifier; 21 using WebKit::WebNetworkStateNotifier;
22 using WebKit::WebRuntimeFeatures; 22 using WebKit::WebRuntimeFeatures;
23 using WebKit::WebSettings; 23 using WebKit::WebSettings;
24 using WebKit::WebString; 24 using WebKit::WebString;
25 using WebKit::WebURL; 25 using WebKit::WebURL;
26 using WebKit::WebView; 26 using WebKit::WebView;
27 27
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 settings->setAllowDisplayOfInsecureContent(allow_displaying_insecure_content); 319 settings->setAllowDisplayOfInsecureContent(allow_displaying_insecure_content);
320 settings->setAllowRunningOfInsecureContent(allow_running_insecure_content); 320 settings->setAllowRunningOfInsecureContent(allow_running_insecure_content);
321 settings->setShouldPrintBackgrounds(should_print_backgrounds); 321 settings->setShouldPrintBackgrounds(should_print_backgrounds);
322 settings->setEnableScrollAnimator(enable_scroll_animator); 322 settings->setEnableScrollAnimator(enable_scroll_animator);
323 settings->setHixie76WebSocketProtocolEnabled( 323 settings->setHixie76WebSocketProtocolEnabled(
324 hixie76_websocket_protocol_enabled); 324 hixie76_websocket_protocol_enabled);
325 settings->setVisualWordMovementEnabled(visual_word_movement_enabled); 325 settings->setVisualWordMovementEnabled(visual_word_movement_enabled);
326 326
327 WebNetworkStateNotifier::setOnLine(is_online); 327 WebNetworkStateNotifier::setOnLine(is_online);
328 } 328 }
OLDNEW
« no previous file with comments | « webkit/glue/webkitplatformsupport_impl.cc ('k') | webkit/glue/websocketstreamhandle_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698