blob: 8f3a62baf56f432d887a1a30c1d2f56075c6ece6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef WEBKIT_GLUE_WEBKIT_GLUE_H_
#define WEBKIT_GLUE_WEBKIT_GLUE_H_
#include <string>
#include "base/platform_file.h"
#include "webkit/glue/webkit_glue_export.h"
namespace blink {
struct WebFileInfo;
}
namespace webkit_glue {
WEBKIT_GLUE_EXPORT void SetJavaScriptFlags(const std::string& flags);
// File info conversion
WEBKIT_GLUE_EXPORT void PlatformFileInfoToWebFileInfo(
const base::PlatformFileInfo& file_info,
blink::WebFileInfo* web_file_info);
} // namespace webkit_glue
#endif // WEBKIT_GLUE_WEBKIT_GLUE_H_
|