OLD | NEW |
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/webkitplatformsupport_impl.h" | 5 #include "webkit/glue/webkitplatformsupport_impl.h" |
6 | 6 |
7 #if defined(OS_LINUX) | 7 #if defined(OS_LINUX) |
8 #include <malloc.h> | 8 #include <malloc.h> |
9 #endif | 9 #endif |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... |
22 #include "base/process_util.h" | 22 #include "base/process_util.h" |
23 #include "base/rand_util.h" | 23 #include "base/rand_util.h" |
24 #include "base/string_number_conversions.h" | 24 #include "base/string_number_conversions.h" |
25 #include "base/string_util.h" | 25 #include "base/string_util.h" |
26 #include "base/synchronization/lock.h" | 26 #include "base/synchronization/lock.h" |
27 #include "base/time.h" | 27 #include "base/time.h" |
28 #include "base/utf_string_conversions.h" | 28 #include "base/utf_string_conversions.h" |
29 #include "grit/webkit_chromium_resources.h" | 29 #include "grit/webkit_chromium_resources.h" |
30 #include "grit/webkit_resources.h" | 30 #include "grit/webkit_resources.h" |
31 #include "grit/webkit_strings.h" | 31 #include "grit/webkit_strings.h" |
32 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCookie.h" | 32 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebCookie.h" |
33 #include "third_party/WebKit/Source/WebKit/chromium/public/WebData.h" | 33 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebData.h" |
34 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h" | 34 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h" |
35 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginListBuilder.
h" | 35 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginListBuilder.
h" |
36 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" | 36 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" |
37 #include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h" | 37 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" |
38 #include "third_party/WebKit/Source/WebKit/chromium/public/WebVector.h" | 38 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebVector.h" |
39 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURL.h" | 39 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURL.h" |
40 #include "webkit/glue/webkit_glue.h" | 40 #include "webkit/glue/webkit_glue.h" |
41 #include "webkit/glue/websocketstreamhandle_impl.h" | 41 #include "webkit/glue/websocketstreamhandle_impl.h" |
42 #include "webkit/glue/webthread_impl.h" | 42 #include "webkit/glue/webthread_impl.h" |
43 #include "webkit/glue/weburlloader_impl.h" | 43 #include "webkit/glue/weburlloader_impl.h" |
44 #include "webkit/media/audio_decoder.h" | 44 #include "webkit/media/audio_decoder.h" |
45 #include "webkit/plugins/npapi/plugin_instance.h" | 45 #include "webkit/plugins/npapi/plugin_instance.h" |
46 #include "webkit/plugins/webplugininfo.h" | 46 #include "webkit/plugins/webplugininfo.h" |
47 | 47 |
48 #if defined(OS_LINUX) | 48 #if defined(OS_LINUX) |
49 #include "v8/include/v8.h" | 49 #include "v8/include/v8.h" |
(...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
680 } | 680 } |
681 | 681 |
682 // static | 682 // static |
683 void WebKitPlatformSupportImpl::DestroyCurrentThread(void* thread) { | 683 void WebKitPlatformSupportImpl::DestroyCurrentThread(void* thread) { |
684 WebThreadImplForMessageLoop* impl = | 684 WebThreadImplForMessageLoop* impl = |
685 static_cast<WebThreadImplForMessageLoop*>(thread); | 685 static_cast<WebThreadImplForMessageLoop*>(thread); |
686 delete impl; | 686 delete impl; |
687 } | 687 } |
688 | 688 |
689 } // namespace webkit_glue | 689 } // namespace webkit_glue |
OLD | NEW |