| 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 #ifndef CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 virtual WebKit::WebMimeRegistry* mimeRegistry() OVERRIDE; | 40 virtual WebKit::WebMimeRegistry* mimeRegistry() OVERRIDE; |
| 41 virtual WebKit::WebFileUtilities* fileUtilities() OVERRIDE; | 41 virtual WebKit::WebFileUtilities* fileUtilities() OVERRIDE; |
| 42 virtual WebKit::WebSandboxSupport* sandboxSupport() OVERRIDE; | 42 virtual WebKit::WebSandboxSupport* sandboxSupport() OVERRIDE; |
| 43 virtual WebKit::WebCookieJar* cookieJar() OVERRIDE; | 43 virtual WebKit::WebCookieJar* cookieJar() OVERRIDE; |
| 44 virtual bool sandboxEnabled() OVERRIDE; | 44 virtual bool sandboxEnabled() OVERRIDE; |
| 45 virtual unsigned long long visitedLinkHash( | 45 virtual unsigned long long visitedLinkHash( |
| 46 const char* canonicalURL, size_t length) OVERRIDE; | 46 const char* canonicalURL, size_t length) OVERRIDE; |
| 47 virtual bool isLinkVisited(unsigned long long linkHash) OVERRIDE; | 47 virtual bool isLinkVisited(unsigned long long linkHash) OVERRIDE; |
| 48 virtual WebKit::WebMessagePortChannel* createMessagePortChannel() OVERRIDE; | 48 virtual WebKit::WebMessagePortChannel* createMessagePortChannel() OVERRIDE; |
| 49 virtual void prefetchHostName(const WebKit::WebString&) OVERRIDE; | 49 virtual void prefetchHostName(const WebKit::WebString&) OVERRIDE; |
| 50 virtual void newLinkPrerender( |
| 51 int prerender_id, |
| 52 WebKit::WebView* webView, |
| 53 const WebKit::WebURL& url, |
| 54 const WebKit::WebString& referrer, |
| 55 WebKit::WebReferrerPolicy policy, |
| 56 const WebKit::WebSize& size) OVERRIDE; |
| 57 virtual void removedLinkPrerender(int id) OVERRIDE; |
| 58 virtual void unloadedLinkPrerender(int id) OVERRIDE; |
| 50 virtual void cacheMetadata( | 59 virtual void cacheMetadata( |
| 51 const WebKit::WebURL&, double, const char*, size_t) OVERRIDE; | 60 const WebKit::WebURL&, double, const char*, size_t) OVERRIDE; |
| 52 virtual WebKit::WebString defaultLocale() OVERRIDE; | 61 virtual WebKit::WebString defaultLocale() OVERRIDE; |
| 53 virtual void suddenTerminationChanged(bool enabled) OVERRIDE; | 62 virtual void suddenTerminationChanged(bool enabled) OVERRIDE; |
| 54 virtual WebKit::WebStorageNamespace* createLocalStorageNamespace( | 63 virtual WebKit::WebStorageNamespace* createLocalStorageNamespace( |
| 55 const WebKit::WebString& path, unsigned quota) OVERRIDE; | 64 const WebKit::WebString& path, unsigned quota) OVERRIDE; |
| 56 virtual void dispatchStorageEvent( | 65 virtual void dispatchStorageEvent( |
| 57 const WebKit::WebString& key, const WebKit::WebString& old_value, | 66 const WebKit::WebString& key, const WebKit::WebString& old_value, |
| 58 const WebKit::WebString& new_value, const WebKit::WebString& origin, | 67 const WebKit::WebString& new_value, const WebKit::WebString& origin, |
| 59 const WebKit::WebURL& url, bool is_local_storage) OVERRIDE; | 68 const WebKit::WebURL& url, bool is_local_storage) OVERRIDE; |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; | 141 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; |
| 133 | 142 |
| 134 scoped_ptr<WebFileSystemImpl> web_file_system_; | 143 scoped_ptr<WebFileSystemImpl> web_file_system_; |
| 135 | 144 |
| 136 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; | 145 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; |
| 137 | 146 |
| 138 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_; | 147 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_; |
| 139 }; | 148 }; |
| 140 | 149 |
| 141 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 150 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| OLD | NEW |