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/memory/shared_memory.h" | 10 #include "base/memory/shared_memory.h" |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 #include "third_party/WebKit/public/platform/linux/WebSandboxSupport.h" | 101 #include "third_party/WebKit/public/platform/linux/WebSandboxSupport.h" |
102 #include "third_party/icu/source/common/unicode/utf16.h" | 102 #include "third_party/icu/source/common/unicode/utf16.h" |
103 #endif | 103 #endif |
104 #endif | 104 #endif |
105 | 105 |
106 #if defined(OS_WIN) | 106 #if defined(OS_WIN) |
107 #include "content/common/child_process_messages.h" | 107 #include "content/common/child_process_messages.h" |
108 #include "third_party/WebKit/public/platform/win/WebSandboxSupport.h" | 108 #include "third_party/WebKit/public/platform/win/WebSandboxSupport.h" |
109 #endif | 109 #endif |
110 | 110 |
111 #if defined(TOOLKIT_GTK) || defined(USE_AURA) | 111 #if defined(USE_AURA) |
112 #include "content/renderer/webscrollbarbehavior_impl_gtkoraura.h" | 112 #include "content/renderer/webscrollbarbehavior_impl_gtkoraura.h" |
113 #elif !defined(OS_MACOSX) | 113 #elif !defined(OS_MACOSX) |
114 #include "third_party/WebKit/public/platform/WebScrollbarBehavior.h" | 114 #include "third_party/WebKit/public/platform/WebScrollbarBehavior.h" |
115 #define WebScrollbarBehaviorImpl blink::WebScrollbarBehavior | 115 #define WebScrollbarBehaviorImpl blink::WebScrollbarBehavior |
116 #endif | 116 #endif |
117 | 117 |
118 using blink::Platform; | 118 using blink::Platform; |
119 using blink::WebAudioDevice; | 119 using blink::WebAudioDevice; |
120 using blink::WebBlobRegistry; | 120 using blink::WebBlobRegistry; |
121 using blink::WebDatabaseObserver; | 121 using blink::WebDatabaseObserver; |
(...skipping 1051 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1173 return; | 1173 return; |
1174 QuotaDispatcher::ThreadSpecificInstance( | 1174 QuotaDispatcher::ThreadSpecificInstance( |
1175 thread_safe_sender_.get(), | 1175 thread_safe_sender_.get(), |
1176 quota_message_filter_.get())->QueryStorageUsageAndQuota( | 1176 quota_message_filter_.get())->QueryStorageUsageAndQuota( |
1177 storage_partition, | 1177 storage_partition, |
1178 static_cast<quota::StorageType>(type), | 1178 static_cast<quota::StorageType>(type), |
1179 QuotaDispatcher::CreateWebStorageQuotaCallbacksWrapper(callbacks)); | 1179 QuotaDispatcher::CreateWebStorageQuotaCallbacksWrapper(callbacks)); |
1180 } | 1180 } |
1181 | 1181 |
1182 } // namespace content | 1182 } // namespace content |
OLD | NEW |