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

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

Issue 1832473002: WebSQL: Use url::Origin rather than database identifiers for IPC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
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 <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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698