Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(621)

Side by Side Diff: content/child/database_util.h

Issue 1006423008: Add SetFileSize() IPC for WebSQL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unnecessary IPC_MESSAGE_HANDLER_DELAY_REPLYs, remove unnecessary scoped_refptrs. Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/child/blink_platform_impl.cc ('k') | content/child/database_util.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « content/child/blink_platform_impl.cc ('k') | content/child/database_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698