| 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/platform/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 { | |
| 28 class StringPiece; | |
| 29 } | |
| 30 | |
| 31 namespace skia { | 27 namespace skia { |
| 32 class PlatformCanvas; | 28 class PlatformCanvas; |
| 33 } | 29 } |
| 34 | 30 |
| 35 namespace WebKit { | 31 namespace WebKit { |
| 36 class WebFrame; | 32 class WebFrame; |
| 37 class WebString; | 33 class WebString; |
| 38 } | 34 } |
| 39 | 35 |
| 40 namespace webkit_glue { | 36 namespace webkit_glue { |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 // Returns WebKit Web Inspector protocol version. | 145 // Returns WebKit Web Inspector protocol version. |
| 150 std::string GetInspectorProtocolVersion(); | 146 std::string GetInspectorProtocolVersion(); |
| 151 | 147 |
| 152 // Tells caller whether the given protocol version is supported by the. | 148 // Tells caller whether the given protocol version is supported by the. |
| 153 WEBKIT_GLUE_EXPORT bool IsInspectorProtocolVersionSupported( | 149 WEBKIT_GLUE_EXPORT bool IsInspectorProtocolVersionSupported( |
| 154 const std::string& version); | 150 const std::string& version); |
| 155 | 151 |
| 156 } // namespace webkit_glue | 152 } // namespace webkit_glue |
| 157 | 153 |
| 158 #endif // WEBKIT_GLUE_WEBKIT_GLUE_H_ | 154 #endif // WEBKIT_GLUE_WEBKIT_GLUE_H_ |
| OLD | NEW |