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

Side by Side Diff: ppapi/shared_impl/file_ref_detailed_info.h

Issue 21966004: Pepper: Move FileRef to the "new" resource proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: CreateInfo/DetailedInfo rename Created 7 years, 4 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
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef PPAPI_SHARED_IMPL_FILE_REF_DETAILED_INFO_H
6 #define PPAPI_SHARED_IMPL_FILE_REF_DETAILED_INFO_H
7
8 #include <string>
9
10 #include "base/files/file_path.h"
11 #include "ppapi/c/pp_file_info.h"
12 #include "ppapi/c/pp_resource.h"
13
14 namespace ppapi {
15
16 // This structure is only used for exchanging information about FileRefs from
17 // the Browser to the renderer
yzshen1 2013/08/08 23:16:21 'b'rowser and trailing '.', please.
teravest 2013/08/09 02:00:08 Done.
18 struct FileRefDetailedInfo {
19 PP_Resource resource;
yzshen1 2013/08/08 23:16:21 Just to be sure: I think this doesn't carry 1 ref,
teravest 2013/08/09 02:00:08 Done.
20 PP_FileSystemType file_system_type;
21 std::string file_system_url_spec;
22 base::FilePath external_path;
23 };
24
25 } // namespace ppapi
26
27 #endif // PPAPI_SHARED_IMPL_FILE_REF_DETAILED_INFO_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698