| OLD | NEW |
| 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/support/webkit_support.h" | 5 #include "webkit/support/webkit_support.h" |
| 6 | 6 |
| 7 #include "base/at_exit.h" | 7 #include "base/at_exit.h" |
| 8 #include "base/base64.h" | 8 #include "base/base64.h" |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/bind_helpers.h" | 10 #include "base/bind_helpers.h" |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginParams.h" | 43 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginParams.h" |
| 44 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" | 44 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" |
| 45 #include "third_party/WebKit/public/platform/WebStorageNamespace.h" | 45 #include "third_party/WebKit/public/platform/WebStorageNamespace.h" |
| 46 #include "third_party/WebKit/public/platform/WebURLError.h" | 46 #include "third_party/WebKit/public/platform/WebURLError.h" |
| 47 #if defined(TOOLKIT_GTK) | 47 #if defined(TOOLKIT_GTK) |
| 48 #include "ui/base/keycodes/keyboard_code_conversion_gtk.h" | 48 #include "ui/base/keycodes/keyboard_code_conversion_gtk.h" |
| 49 #endif | 49 #endif |
| 50 #include "ui/gl/gl_context.h" | 50 #include "ui/gl/gl_context.h" |
| 51 #include "ui/gl/gl_implementation.h" | 51 #include "ui/gl/gl_implementation.h" |
| 52 #include "ui/gl/gl_surface.h" | 52 #include "ui/gl/gl_surface.h" |
| 53 #include "webkit/base/file_path_string_conversions.h" | 53 #include "webkit/common/base/file_path_string_conversions.h" |
| 54 #include "webkit/browser/fileapi/isolated_context.h" | 54 #include "webkit/browser/fileapi/isolated_context.h" |
| 55 #include "webkit/common/gpu/test_context_provider_factory.h" | 55 #include "webkit/common/gpu/test_context_provider_factory.h" |
| 56 #include "webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.
h" | 56 #include "webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.
h" |
| 57 #include "webkit/common/user_agent/user_agent.h" | 57 #include "webkit/common/user_agent/user_agent.h" |
| 58 #include "webkit/common/user_agent/user_agent_util.h" | 58 #include "webkit/common/user_agent/user_agent_util.h" |
| 59 #include "webkit/glue/webkit_glue.h" | 59 #include "webkit/glue/webkit_glue.h" |
| 60 #include "webkit/glue/webkitplatformsupport_impl.h" | 60 #include "webkit/glue/webkitplatformsupport_impl.h" |
| 61 #include "webkit/glue/webthread_impl.h" | 61 #include "webkit/glue/webthread_impl.h" |
| 62 #include "webkit/glue/weburlrequest_extradata_impl.h" | 62 #include "webkit/glue/weburlrequest_extradata_impl.h" |
| 63 #include "webkit/plugins/npapi/plugin_list.h" | 63 #include "webkit/plugins/npapi/plugin_list.h" |
| (...skipping 788 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 852 // Logging | 852 // Logging |
| 853 void EnableWebCoreLogChannels(const std::string& channels) { | 853 void EnableWebCoreLogChannels(const std::string& channels) { |
| 854 webkit_glue::EnableWebCoreLogChannels(channels); | 854 webkit_glue::EnableWebCoreLogChannels(channels); |
| 855 } | 855 } |
| 856 | 856 |
| 857 void SetGamepadData(const WebKit::WebGamepads& pads) { | 857 void SetGamepadData(const WebKit::WebGamepads& pads) { |
| 858 test_environment->webkit_platform_support()->setGamepadData(pads); | 858 test_environment->webkit_platform_support()->setGamepadData(pads); |
| 859 } | 859 } |
| 860 | 860 |
| 861 } // namespace webkit_support | 861 } // namespace webkit_support |
| OLD | NEW |