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

Side by Side Diff: webkit/glue/webkit_glue.h

Issue 145303002: Convert Media Galleries to use base::File (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 10 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 | « webkit/glue/webfileutilities_impl.cc ('k') | webkit/glue/webkit_glue.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 WEBKIT_GLUE_WEBKIT_GLUE_H_ 5 #ifndef WEBKIT_GLUE_WEBKIT_GLUE_H_
6 #define WEBKIT_GLUE_WEBKIT_GLUE_H_ 6 #define WEBKIT_GLUE_WEBKIT_GLUE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/platform_file.h" 10 #include "base/files/file.h"
11 #include "webkit/glue/webkit_glue_export.h" 11 #include "webkit/glue/webkit_glue_export.h"
12 12
13 namespace blink { 13 namespace blink {
14 struct WebFileInfo; 14 struct WebFileInfo;
15 } 15 }
16 16
17 namespace webkit_glue { 17 namespace webkit_glue {
18 18
19 WEBKIT_GLUE_EXPORT void SetJavaScriptFlags(const std::string& flags); 19 WEBKIT_GLUE_EXPORT void SetJavaScriptFlags(const std::string& flags);
20 20
21 // File info conversion 21 // File info conversion
22 WEBKIT_GLUE_EXPORT void PlatformFileInfoToWebFileInfo( 22 WEBKIT_GLUE_EXPORT void FileInfoToWebFileInfo(
23 const base::PlatformFileInfo& file_info, 23 const base::File::Info& file_info,
24 blink::WebFileInfo* web_file_info); 24 blink::WebFileInfo* web_file_info);
25 25
26 } // namespace webkit_glue 26 } // namespace webkit_glue
27 27
28 #endif // WEBKIT_GLUE_WEBKIT_GLUE_H_ 28 #endif // WEBKIT_GLUE_WEBKIT_GLUE_H_
OLDNEW
« no previous file with comments | « webkit/glue/webfileutilities_impl.cc ('k') | webkit/glue/webkit_glue.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698