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/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 20 matching lines...) Expand all Loading... |
31 #include "media/base/filter_collection.h" | 31 #include "media/base/filter_collection.h" |
32 #include "media/base/media_log.h" | 32 #include "media/base/media_log.h" |
33 #include "media/base/message_loop_factory_impl.h" | 33 #include "media/base/message_loop_factory_impl.h" |
34 #include "net/base/escape.h" | 34 #include "net/base/escape.h" |
35 #include "net/base/net_errors.h" | 35 #include "net/base/net_errors.h" |
36 #include "net/base/net_util.h" | 36 #include "net/base/net_util.h" |
37 #include "testing/gtest/include/gtest/gtest.h" | 37 #include "testing/gtest/include/gtest/gtest.h" |
38 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystemCallback
s.h" | 38 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystemCallback
s.h" |
39 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" | 39 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" |
40 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginParams.h" | 40 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginParams.h" |
41 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLError.h" | 41 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLError.
h" |
42 #if defined(TOOLKIT_USES_GTK) | 42 #if defined(TOOLKIT_USES_GTK) |
43 #include "ui/base/keycodes/keyboard_code_conversion_gtk.h" | 43 #include "ui/base/keycodes/keyboard_code_conversion_gtk.h" |
44 #endif | 44 #endif |
45 #include "ui/gfx/gl/gl_context.h" | 45 #include "ui/gfx/gl/gl_context.h" |
46 #include "ui/gfx/gl/gl_implementation.h" | 46 #include "ui/gfx/gl/gl_implementation.h" |
47 #include "ui/gfx/gl/gl_surface.h" | 47 #include "ui/gfx/gl/gl_surface.h" |
48 #include "webkit/appcache/web_application_cache_host_impl.h" | 48 #include "webkit/appcache/web_application_cache_host_impl.h" |
49 #include "webkit/glue/user_agent.h" | 49 #include "webkit/glue/user_agent.h" |
50 #include "webkit/glue/webkit_constants.h" | 50 #include "webkit/glue/webkit_constants.h" |
51 #include "webkit/glue/webkit_glue.h" | 51 #include "webkit/glue/webkit_glue.h" |
(...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
636 // Logging | 636 // Logging |
637 void EnableWebCoreLogChannels(const std::string& channels) { | 637 void EnableWebCoreLogChannels(const std::string& channels) { |
638 webkit_glue::EnableWebCoreLogChannels(channels); | 638 webkit_glue::EnableWebCoreLogChannels(channels); |
639 } | 639 } |
640 | 640 |
641 void SetGamepadData(const WebKit::WebGamepads& pads) { | 641 void SetGamepadData(const WebKit::WebGamepads& pads) { |
642 test_environment->webkit_platform_support()->setGamepadData(pads); | 642 test_environment->webkit_platform_support()->setGamepadData(pads); |
643 } | 643 } |
644 | 644 |
645 } // namespace webkit_support | 645 } // namespace webkit_support |
OLD | NEW |