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

Side by Side Diff: content/renderer/render_thread_impl.cc

Issue 15462003: Update references to Blink's Platform API headers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 "content/renderer/render_thread_impl.h" 5 #include "content/renderer/render_thread_impl.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <limits> 8 #include <limits>
9 #include <map> 9 #include <map>
10 #include <vector> 10 #include <vector>
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 #include "content/renderer/skia_benchmarking_extension.h" 74 #include "content/renderer/skia_benchmarking_extension.h"
75 #include "grit/content_resources.h" 75 #include "grit/content_resources.h"
76 #include "ipc/ipc_channel_handle.h" 76 #include "ipc/ipc_channel_handle.h"
77 #include "ipc/ipc_forwarding_message_filter.h" 77 #include "ipc/ipc_forwarding_message_filter.h"
78 #include "ipc/ipc_platform_file.h" 78 #include "ipc/ipc_platform_file.h"
79 #include "media/base/audio_hardware_config.h" 79 #include "media/base/audio_hardware_config.h"
80 #include "media/base/media.h" 80 #include "media/base/media.h"
81 #include "media/base/media_switches.h" 81 #include "media/base/media_switches.h"
82 #include "net/base/net_errors.h" 82 #include "net/base/net_errors.h"
83 #include "net/base/net_util.h" 83 #include "net/base/net_util.h"
84 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" 84 #include "third_party/WebKit/public/platform/WebString.h"
85 #include "third_party/WebKit/Source/WebKit/chromium/public/WebColorName.h" 85 #include "third_party/WebKit/Source/WebKit/chromium/public/WebColorName.h"
86 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDatabase.h" 86 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDatabase.h"
87 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" 87 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h"
88 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" 88 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
89 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" 89 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h"
90 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNetworkStateNotifi er.h" 90 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNetworkStateNotifi er.h"
91 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupMenu.h" 91 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupMenu.h"
92 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRuntimeFeatures.h" 92 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRuntimeFeatures.h"
93 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptController.h " 93 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptController.h "
94 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h" 94 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h"
(...skipping 1222 matching lines...) Expand 10 before | Expand all | Expand 10 after
1317 1317
1318 void RenderThreadImpl::SetFlingCurveParameters( 1318 void RenderThreadImpl::SetFlingCurveParameters(
1319 const std::vector<float>& new_touchpad, 1319 const std::vector<float>& new_touchpad,
1320 const std::vector<float>& new_touchscreen) { 1320 const std::vector<float>& new_touchscreen) {
1321 webkit_platform_support_->SetFlingCurveParameters(new_touchpad, 1321 webkit_platform_support_->SetFlingCurveParameters(new_touchpad,
1322 new_touchscreen); 1322 new_touchscreen);
1323 1323
1324 } 1324 }
1325 1325
1326 } // namespace content 1326 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/pepper/renderer_ppapi_host_impl.cc ('k') | content/renderer/render_view_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698