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