OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 "app/clipboard/clipboard.h" | 17 #include "app/clipboard/clipboard.h" |
18 #include "base/file_path.h" | 18 #include "base/file_path.h" |
19 #include "base/string16.h" | 19 #include "base/string16.h" |
20 #include "webkit/api/public/WebCanvas.h" | 20 #include "third_party/WebKit/WebKit/chromium/public/WebCanvas.h" |
21 | 21 |
22 class GURL; | 22 class GURL; |
23 class SkBitmap; | 23 class SkBitmap; |
24 struct WebPluginInfo; | 24 struct WebPluginInfo; |
25 | 25 |
26 namespace base { | 26 namespace base { |
27 class StringPiece; | 27 class StringPiece; |
28 } | 28 } |
29 | 29 |
30 namespace skia { | 30 namespace skia { |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 | 230 |
231 // Enable or disable the disk cache. Used for debugging. | 231 // Enable or disable the disk cache. Used for debugging. |
232 void SetCacheMode(bool enabled); | 232 void SetCacheMode(bool enabled); |
233 | 233 |
234 // ---- END FUNCTIONS IMPLEMENTED BY EMBEDDER --------------------------------- | 234 // ---- END FUNCTIONS IMPLEMENTED BY EMBEDDER --------------------------------- |
235 | 235 |
236 | 236 |
237 } // namespace webkit_glue | 237 } // namespace webkit_glue |
238 | 238 |
239 #endif // WEBKIT_GLUE_WEBKIT_GLUE_H_ | 239 #endif // WEBKIT_GLUE_WEBKIT_GLUE_H_ |
OLD | NEW |