| OLD | NEW |
| 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> | |
| 9 | |
| 10 #include "base/files/file.h" | 8 #include "base/files/file.h" |
| 11 #include "webkit/glue/webkit_glue_export.h" | 9 #include "webkit/glue/webkit_glue_export.h" |
| 12 | 10 |
| 13 namespace blink { | 11 namespace blink { |
| 14 struct WebFileInfo; | 12 struct WebFileInfo; |
| 15 } | 13 } |
| 16 | 14 |
| 17 namespace webkit_glue { | 15 namespace webkit_glue { |
| 18 | 16 |
| 19 WEBKIT_GLUE_EXPORT void SetJavaScriptFlags(const std::string& flags); | |
| 20 | |
| 21 // File info conversion | 17 // File info conversion |
| 22 WEBKIT_GLUE_EXPORT void FileInfoToWebFileInfo( | 18 WEBKIT_GLUE_EXPORT void FileInfoToWebFileInfo( |
| 23 const base::File::Info& file_info, | 19 const base::File::Info& file_info, |
| 24 blink::WebFileInfo* web_file_info); | 20 blink::WebFileInfo* web_file_info); |
| 25 | 21 |
| 26 } // namespace webkit_glue | 22 } // namespace webkit_glue |
| 27 | 23 |
| 28 #endif // WEBKIT_GLUE_WEBKIT_GLUE_H_ | 24 #endif // WEBKIT_GLUE_WEBKIT_GLUE_H_ |
| OLD | NEW |