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

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

Issue 15937016: Update refernces to Blink's Platform API (webkit) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« no previous file with comments | « webkit/glue/webkitplatformsupport_impl.h ('k') | webkit/glue/webpreferences.cc » ('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) 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 "webkit/glue/webkitplatformsupport_impl.h" 5 #include "webkit/glue/webkitplatformsupport_impl.h"
6 6
7 #include <math.h> 7 #include <math.h>
8 8
9 #include <vector> 9 #include <vector>
10 10
(...skipping 11 matching lines...) Expand all
22 #include "base/string_util.h" 22 #include "base/string_util.h"
23 #include "base/strings/string_number_conversions.h" 23 #include "base/strings/string_number_conversions.h"
24 #include "base/synchronization/lock.h" 24 #include "base/synchronization/lock.h"
25 #include "base/sys_info.h" 25 #include "base/sys_info.h"
26 #include "base/time.h" 26 #include "base/time.h"
27 #include "base/utf_string_conversions.h" 27 #include "base/utf_string_conversions.h"
28 #include "grit/webkit_chromium_resources.h" 28 #include "grit/webkit_chromium_resources.h"
29 #include "grit/webkit_resources.h" 29 #include "grit/webkit_resources.h"
30 #include "grit/webkit_strings.h" 30 #include "grit/webkit_strings.h"
31 #include "net/base/net_errors.h" 31 #include "net/base/net_errors.h"
32 #include "third_party/WebKit/Source/Platform/chromium/public/WebCookie.h" 32 #include "third_party/WebKit/public/platform/WebCookie.h"
33 #include "third_party/WebKit/Source/Platform/chromium/public/WebData.h" 33 #include "third_party/WebKit/public/platform/WebData.h"
34 #include "third_party/WebKit/Source/Platform/chromium/public/WebDiscardableMemor y.h" 34 #include "third_party/WebKit/public/platform/WebDiscardableMemory.h"
35 #include "third_party/WebKit/Source/Platform/chromium/public/WebGestureCurve.h" 35 #include "third_party/WebKit/public/platform/WebGestureCurve.h"
36 #include "third_party/WebKit/Source/Platform/chromium/public/WebPluginListBuilde r.h" 36 #include "third_party/WebKit/public/platform/WebPluginListBuilder.h"
37 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" 37 #include "third_party/WebKit/public/platform/WebString.h"
38 #include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h" 38 #include "third_party/WebKit/public/platform/WebURL.h"
39 #include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h" 39 #include "third_party/WebKit/public/platform/WebVector.h"
40 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h" 40 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h"
41 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" 41 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
42 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" 42 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h"
43 #include "ui/base/layout.h" 43 #include "ui/base/layout.h"
44 #include "webkit/base/file_path_string_conversions.h" 44 #include "webkit/base/file_path_string_conversions.h"
45 #include "webkit/common/user_agent/user_agent.h" 45 #include "webkit/common/user_agent/user_agent.h"
46 #include "webkit/glue/fling_curve_configuration.h" 46 #include "webkit/glue/fling_curve_configuration.h"
47 #include "webkit/glue/touch_fling_gesture_curve.h" 47 #include "webkit/glue/touch_fling_gesture_curve.h"
48 #include "webkit/glue/web_discardable_memory_impl.h" 48 #include "webkit/glue/web_discardable_memory_impl.h"
49 #include "webkit/glue/webkit_glue.h" 49 #include "webkit/glue/webkit_glue.h"
(...skipping 950 matching lines...) Expand 10 before | Expand all | Expand 10 after
1000 } 1000 }
1001 1001
1002 #if defined(OS_ANDROID) 1002 #if defined(OS_ANDROID)
1003 webkit_media::WebAudioMediaCodecRunner 1003 webkit_media::WebAudioMediaCodecRunner
1004 WebKitPlatformSupportImpl::GetWebAudioMediaCodecRunner() { 1004 WebKitPlatformSupportImpl::GetWebAudioMediaCodecRunner() {
1005 return base::Bind(&NullRunWebAudioMediaCodec); 1005 return base::Bind(&NullRunWebAudioMediaCodec);
1006 } 1006 }
1007 #endif 1007 #endif
1008 1008
1009 } // namespace webkit_glue 1009 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/glue/webkitplatformsupport_impl.h ('k') | webkit/glue/webpreferences.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698