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

Side by Side Diff: content/common/database_util.cc

Issue 8788003: Update includes to new header locations (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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 | Annotate | Revision Log
« no previous file with comments | « content/common/css_colors.h ('k') | content/common/db_message_filter.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "content/common/database_util.h" 5 #include "content/common/database_util.h"
6 6
7 #include "content/common/child_thread.h" 7 #include "content/common/child_thread.h"
8 #include "content/common/database_messages.h" 8 #include "content/common/database_messages.h"
9 #include "ipc/ipc_sync_message_filter.h" 9 #include "ipc/ipc_sync_message_filter.h"
10 #include "third_party/sqlite/sqlite3.h" 10 #include "third_party/sqlite/sqlite3.h"
11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h" 11 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h"
12 12
13 using WebKit::WebKitPlatformSupport; 13 using WebKit::WebKitPlatformSupport;
14 using WebKit::WebString; 14 using WebKit::WebString;
15 15
16 WebKitPlatformSupport::FileHandle DatabaseUtil::DatabaseOpenFile( 16 WebKitPlatformSupport::FileHandle DatabaseUtil::DatabaseOpenFile(
17 const WebString& vfs_file_name, int desired_flags) { 17 const WebString& vfs_file_name, int desired_flags) {
18 IPC::PlatformFileForTransit file_handle = 18 IPC::PlatformFileForTransit file_handle =
19 IPC::InvalidPlatformFileForTransit(); 19 IPC::InvalidPlatformFileForTransit();
20 20
21 scoped_refptr<IPC::SyncMessageFilter> filter( 21 scoped_refptr<IPC::SyncMessageFilter> filter(
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 } 53 }
54 54
55 long long DatabaseUtil::DatabaseGetSpaceAvailable( 55 long long DatabaseUtil::DatabaseGetSpaceAvailable(
56 const WebString& origin_identifier) { 56 const WebString& origin_identifier) {
57 int64 rv = 0LL; 57 int64 rv = 0LL;
58 scoped_refptr<IPC::SyncMessageFilter> filter( 58 scoped_refptr<IPC::SyncMessageFilter> filter(
59 ChildThread::current()->sync_message_filter()); 59 ChildThread::current()->sync_message_filter());
60 filter->Send(new DatabaseHostMsg_GetSpaceAvailable(origin_identifier, &rv)); 60 filter->Send(new DatabaseHostMsg_GetSpaceAvailable(origin_identifier, &rv));
61 return rv; 61 return rv;
62 } 62 }
OLDNEW
« no previous file with comments | « content/common/css_colors.h ('k') | content/common/db_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698