| 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_BLINK_PLATFORM_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 size_t) override; | 98 size_t) override; |
| 99 void CacheMetadataInCacheStorage( | 99 void CacheMetadataInCacheStorage( |
| 100 const blink::WebURL&, | 100 const blink::WebURL&, |
| 101 int64_t, | 101 int64_t, |
| 102 const char*, | 102 const char*, |
| 103 size_t, | 103 size_t, |
| 104 const blink::WebSecurityOrigin& cacheStorageOrigin, | 104 const blink::WebSecurityOrigin& cacheStorageOrigin, |
| 105 const blink::WebString& cacheStorageCacheName) override; | 105 const blink::WebString& cacheStorageCacheName) override; |
| 106 blink::WebString DefaultLocale() override; | 106 blink::WebString DefaultLocale() override; |
| 107 void SuddenTerminationChanged(bool enabled) override; | 107 void SuddenTerminationChanged(bool enabled) override; |
| 108 void IncProcessRefCount() override; |
| 109 void DecProcessRefCount() override; |
| 108 std::unique_ptr<blink::WebStorageNamespace> CreateLocalStorageNamespace() | 110 std::unique_ptr<blink::WebStorageNamespace> CreateLocalStorageNamespace() |
| 109 override; | 111 override; |
| 110 blink::Platform::FileHandle DatabaseOpenFile( | 112 blink::Platform::FileHandle DatabaseOpenFile( |
| 111 const blink::WebString& vfs_file_name, | 113 const blink::WebString& vfs_file_name, |
| 112 int desired_flags) override; | 114 int desired_flags) override; |
| 113 int DatabaseDeleteFile(const blink::WebString& vfs_file_name, | 115 int DatabaseDeleteFile(const blink::WebString& vfs_file_name, |
| 114 bool sync_dir) override; | 116 bool sync_dir) override; |
| 115 long DatabaseGetFileAttributes( | 117 long DatabaseGetFileAttributes( |
| 116 const blink::WebString& vfs_file_name) override; | 118 const blink::WebString& vfs_file_name) override; |
| 117 long long DatabaseGetFileSize(const blink::WebString& vfs_file_name) override; | 119 long long DatabaseGetFileSize(const blink::WebString& vfs_file_name) override; |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; | 311 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; |
| 310 | 312 |
| 311 PossiblyAssociatedInterfacePtr<mojom::URLLoaderFactory> url_loader_factory_; | 313 PossiblyAssociatedInterfacePtr<mojom::URLLoaderFactory> url_loader_factory_; |
| 312 | 314 |
| 313 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 315 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 314 }; | 316 }; |
| 315 | 317 |
| 316 } // namespace content | 318 } // namespace content |
| 317 | 319 |
| 318 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 320 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |