| 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 "base/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 "webkit/api/public/WebCanvas.h" |
| 21 | 21 |
| 22 class GURL; | 22 class GURL; |
| 23 class SkBitmap; | 23 class SkBitmap; |
| 24 class WebView; | 24 class WebView; |
| 25 struct WebPluginInfo; | 25 struct WebPluginInfo; |
| 26 | 26 |
| 27 namespace base { | 27 namespace base { |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 | 232 |
| 233 // Enable or disable the disk cache. Used for debugging. | 233 // Enable or disable the disk cache. Used for debugging. |
| 234 void SetCacheMode(bool enabled); | 234 void SetCacheMode(bool enabled); |
| 235 | 235 |
| 236 // ---- END FUNCTIONS IMPLEMENTED BY EMBEDDER --------------------------------- | 236 // ---- END FUNCTIONS IMPLEMENTED BY EMBEDDER --------------------------------- |
| 237 | 237 |
| 238 | 238 |
| 239 } // namespace webkit_glue | 239 } // namespace webkit_glue |
| 240 | 240 |
| 241 #endif // WEBKIT_GLUE_WEBKIT_GLUE_H_ | 241 #endif // WEBKIT_GLUE_WEBKIT_GLUE_H_ |
| OLD | NEW |