Copy ldb files in ChromiumEnv for the purpose of backups.
[chromium-blink-merge.git] / webkit / glue / webkit_glue.h
blobc39601508d7c4952fe798e0134070aed45726cd4
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
3 // found in the LICENSE file.
5 #ifndef WEBKIT_GLUE_WEBKIT_GLUE_H_
6 #define WEBKIT_GLUE_WEBKIT_GLUE_H_
8 #include <string>
10 #include "base/platform_file.h"
11 #include "webkit/glue/webkit_glue_export.h"
13 namespace WebKit {
14 struct WebFileInfo;
17 namespace webkit_glue {
19 WEBKIT_GLUE_EXPORT void SetJavaScriptFlags(const std::string& flags);
21 // File info conversion
22 WEBKIT_GLUE_EXPORT void PlatformFileInfoToWebFileInfo(
23 const base::PlatformFileInfo& file_info,
24 WebKit::WebFileInfo* web_file_info);
26 } // namespace webkit_glue
28 #endif // WEBKIT_GLUE_WEBKIT_GLUE_H_