| 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_CHILD_DATABASE_UTIL_H_ | 5 #ifndef CONTENT_CHILD_DATABASE_UTIL_H_ |
| 6 #define CONTENT_CHILD_DATABASE_UTIL_H_ | 6 #define CONTENT_CHILD_DATABASE_UTIL_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "content/child/blink_platform_impl.h" | 10 #include "content/child/blink_platform_impl.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 const blink::WebString& vfs_file_name, | 27 const blink::WebString& vfs_file_name, |
| 28 bool sync_dir, | 28 bool sync_dir, |
| 29 IPC::SyncMessageFilter* sync_message_filter); | 29 IPC::SyncMessageFilter* sync_message_filter); |
| 30 static long DatabaseGetFileAttributes( | 30 static long DatabaseGetFileAttributes( |
| 31 const blink::WebString& vfs_file_name, | 31 const blink::WebString& vfs_file_name, |
| 32 IPC::SyncMessageFilter* sync_message_filter); | 32 IPC::SyncMessageFilter* sync_message_filter); |
| 33 static long long DatabaseGetFileSize( | 33 static long long DatabaseGetFileSize( |
| 34 const blink::WebString& vfs_file_name, | 34 const blink::WebString& vfs_file_name, |
| 35 IPC::SyncMessageFilter* sync_message_filter); | 35 IPC::SyncMessageFilter* sync_message_filter); |
| 36 static long long DatabaseGetSpaceAvailable( | 36 static long long DatabaseGetSpaceAvailable( |
| 37 const blink::WebString& origin_identifier, | 37 const blink::WebSecurityOrigin& origin, |
| 38 IPC::SyncMessageFilter* sync_message_filter); | 38 IPC::SyncMessageFilter* sync_message_filter); |
| 39 static bool DatabaseSetFileSize(const blink::WebString& vfs_file_name, | 39 static bool DatabaseSetFileSize(const blink::WebString& vfs_file_name, |
| 40 int64_t size, | 40 int64_t size, |
| 41 IPC::SyncMessageFilter* sync_message_filter); | 41 IPC::SyncMessageFilter* sync_message_filter); |
| 42 }; | 42 }; |
| 43 | 43 |
| 44 } // namespace content | 44 } // namespace content |
| 45 | 45 |
| 46 #endif // CONTENT_CHILD_DATABASE_UTIL_H_ | 46 #endif // CONTENT_CHILD_DATABASE_UTIL_H_ |
| OLD | NEW |