| 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 "content/renderer/renderer_webkitplatformsupport_impl.h" | 5 #include "content/renderer/renderer_webkitplatformsupport_impl.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/lazy_instance.h" | 9 #include "base/lazy_instance.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 #include "third_party/WebKit/public/platform/WebFileInfo.h" | 70 #include "third_party/WebKit/public/platform/WebFileInfo.h" |
| 71 #include "third_party/WebKit/public/platform/WebGamepads.h" | 71 #include "third_party/WebKit/public/platform/WebGamepads.h" |
| 72 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h" | 72 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h" |
| 73 #include "third_party/WebKit/public/platform/WebMediaStreamCenterClient.h" | 73 #include "third_party/WebKit/public/platform/WebMediaStreamCenterClient.h" |
| 74 #include "third_party/WebKit/public/platform/WebPluginListBuilder.h" | 74 #include "third_party/WebKit/public/platform/WebPluginListBuilder.h" |
| 75 #include "third_party/WebKit/public/platform/WebURL.h" | 75 #include "third_party/WebKit/public/platform/WebURL.h" |
| 76 #include "third_party/WebKit/public/platform/WebVector.h" | 76 #include "third_party/WebKit/public/platform/WebVector.h" |
| 77 #include "ui/gfx/color_profile.h" | 77 #include "ui/gfx/color_profile.h" |
| 78 #include "url/gurl.h" | 78 #include "url/gurl.h" |
| 79 #include "webkit/common/gpu/context_provider_web_context.h" | 79 #include "webkit/common/gpu/context_provider_web_context.h" |
| 80 #include "webkit/common/quota/quota_types.h" | 80 #include "storage/common/quota/quota_types.h" |
| 81 | 81 |
| 82 #if defined(OS_ANDROID) | 82 #if defined(OS_ANDROID) |
| 83 #include "content/renderer/android/synchronous_compositor_factory.h" | 83 #include "content/renderer/android/synchronous_compositor_factory.h" |
| 84 #include "content/renderer/media/android/audio_decoder_android.h" | 84 #include "content/renderer/media/android/audio_decoder_android.h" |
| 85 #endif | 85 #endif |
| 86 | 86 |
| 87 #if defined(OS_MACOSX) | 87 #if defined(OS_MACOSX) |
| 88 #include "content/common/mac/font_descriptor.h" | 88 #include "content/common/mac/font_descriptor.h" |
| 89 #include "content/common/mac/font_loader.h" | 89 #include "content/common/mac/font_loader.h" |
| 90 #include "content/renderer/webscrollbarbehavior_impl_mac.h" | 90 #include "content/renderer/webscrollbarbehavior_impl_mac.h" |
| (...skipping 1109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1200 | 1200 |
| 1201 //------------------------------------------------------------------------------ | 1201 //------------------------------------------------------------------------------ |
| 1202 | 1202 |
| 1203 // static | 1203 // static |
| 1204 void RendererWebKitPlatformSupportImpl::MockBatteryStatusChangedForTesting( | 1204 void RendererWebKitPlatformSupportImpl::MockBatteryStatusChangedForTesting( |
| 1205 const blink::WebBatteryStatus& status) { | 1205 const blink::WebBatteryStatus& status) { |
| 1206 g_test_battery_status_dispatcher.Get().PostBatteryStatusChange(status); | 1206 g_test_battery_status_dispatcher.Get().PostBatteryStatusChange(status); |
| 1207 } | 1207 } |
| 1208 | 1208 |
| 1209 } // namespace content | 1209 } // namespace content |
| OLD | NEW |