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

Side by Side Diff: content/common/fileapi/file_system_messages.h

Issue 18868005: content: Migrate from googleurl/ includes to url/ ones. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « content/common/dom_storage_messages.h ('k') | content/common/geolocation_messages.h » ('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 // IPC messages for the file system. 5 // IPC messages for the file system.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "googleurl/src/gurl.h"
9 #include "ipc/ipc_message_macros.h" 8 #include "ipc/ipc_message_macros.h"
10 #include "ipc/ipc_platform_file.h" 9 #include "ipc/ipc_platform_file.h"
10 #include "url/gurl.h"
11 #include "webkit/common/fileapi/directory_entry.h" 11 #include "webkit/common/fileapi/directory_entry.h"
12 #include "webkit/common/fileapi/file_system_types.h" 12 #include "webkit/common/fileapi/file_system_types.h"
13 #include "webkit/common/quota/quota_types.h" 13 #include "webkit/common/quota/quota_types.h"
14 14
15 #define IPC_MESSAGE_START FileSystemMsgStart 15 #define IPC_MESSAGE_START FileSystemMsgStart
16 16
17 IPC_STRUCT_TRAITS_BEGIN(fileapi::DirectoryEntry) 17 IPC_STRUCT_TRAITS_BEGIN(fileapi::DirectoryEntry)
18 IPC_STRUCT_TRAITS_MEMBER(name) 18 IPC_STRUCT_TRAITS_MEMBER(name)
19 IPC_STRUCT_TRAITS_MEMBER(is_directory) 19 IPC_STRUCT_TRAITS_MEMBER(is_directory)
20 IPC_STRUCT_TRAITS_END() 20 IPC_STRUCT_TRAITS_END()
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 GURL /* file path */, 166 GURL /* file path */,
167 base::FilePath /* platform_path */) 167 base::FilePath /* platform_path */)
168 168
169 // Pre- and post-update notifications for ppapi implementation. 169 // Pre- and post-update notifications for ppapi implementation.
170 IPC_MESSAGE_CONTROL1(FileSystemHostMsg_WillUpdate, 170 IPC_MESSAGE_CONTROL1(FileSystemHostMsg_WillUpdate,
171 GURL /* file_path */) 171 GURL /* file_path */)
172 172
173 IPC_MESSAGE_CONTROL2(FileSystemHostMsg_DidUpdate, 173 IPC_MESSAGE_CONTROL2(FileSystemHostMsg_DidUpdate,
174 GURL /* file_path */, 174 GURL /* file_path */,
175 int64 /* delta */) 175 int64 /* delta */)
OLDNEW
« no previous file with comments | « content/common/dom_storage_messages.h ('k') | content/common/geolocation_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698