OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 | 9 |
10 #if defined(OS_WIN) | 10 #if defined(OS_WIN) |
11 #include <windows.h> | 11 #include <windows.h> |
12 #endif | 12 #endif |
13 | 13 |
14 #include <string> | 14 #include <string> |
15 #include <vector> | 15 #include <vector> |
16 | 16 |
17 #include "base/file_path.h" | 17 #include "base/file_path.h" |
18 #include "base/platform_file.h" | 18 #include "base/platform_file.h" |
19 #include "base/string16.h" | 19 #include "base/string16.h" |
20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCanvas.h" | 20 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebCanvas.h" |
21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileError.h" | 21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileError.h" |
22 #include "webkit/glue/webkit_glue_export.h" | 22 #include "webkit/glue/webkit_glue_export.h" |
23 | 23 |
24 class GURL; | 24 class GURL; |
25 class SkBitmap; | 25 class SkBitmap; |
26 | 26 |
27 namespace base { | 27 namespace base { |
28 class StringPiece; | 28 class StringPiece; |
29 } | 29 } |
30 | 30 |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 // Returns WebKit Web Inspector protocol version. | 149 // Returns WebKit Web Inspector protocol version. |
150 std::string GetInspectorProtocolVersion(); | 150 std::string GetInspectorProtocolVersion(); |
151 | 151 |
152 // Tells caller whether the given protocol version is supported by the. | 152 // Tells caller whether the given protocol version is supported by the. |
153 WEBKIT_GLUE_EXPORT bool IsInspectorProtocolVersionSupported( | 153 WEBKIT_GLUE_EXPORT bool IsInspectorProtocolVersionSupported( |
154 const std::string& version); | 154 const std::string& version); |
155 | 155 |
156 } // namespace webkit_glue | 156 } // namespace webkit_glue |
157 | 157 |
158 #endif // WEBKIT_GLUE_WEBKIT_GLUE_H_ | 158 #endif // WEBKIT_GLUE_WEBKIT_GLUE_H_ |
OLD | NEW |