| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_WEBFRAME_H_ | 5 #ifndef WEBKIT_GLUE_WEBFRAME_H_ |
| 6 #define WEBKIT_GLUE_WEBFRAME_H_ | 6 #define WEBKIT_GLUE_WEBFRAME_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/ref_counted.h" | 11 #include "base/ref_counted.h" |
| 12 #include "base/gfx/bitmap_platform_device.h" | |
| 13 #include "base/gfx/platform_canvas.h" | |
| 14 #include "base/gfx/size.h" | 12 #include "base/gfx/size.h" |
| 13 #include "skia/ext/bitmap_platform_device.h" |
| 14 #include "skia/ext/platform_canvas.h" |
| 15 #include "webkit/glue/console_message_level.h" | 15 #include "webkit/glue/console_message_level.h" |
| 16 #include "webkit/glue/find_in_page_request.h" | 16 #include "webkit/glue/find_in_page_request.h" |
| 17 | 17 |
| 18 class GURL; | 18 class GURL; |
| 19 class PlatformContextSkia; | 19 class PlatformContextSkia; |
| 20 class WebDataSource; | 20 class WebDataSource; |
| 21 class WebError; | 21 class WebError; |
| 22 class WebRequest; | 22 class WebRequest; |
| 23 class WebView; | 23 class WebView; |
| 24 class WebTextInput; | 24 class WebTextInput; |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 virtual bool IsReloadAllowingStaleData() const = 0; | 362 virtual bool IsReloadAllowingStaleData() const = 0; |
| 363 | 363 |
| 364 // Only for test_shell | 364 // Only for test_shell |
| 365 virtual int PendingFrameUnloadEventCount() const = 0; | 365 virtual int PendingFrameUnloadEventCount() const = 0; |
| 366 | 366 |
| 367 private: | 367 private: |
| 368 DISALLOW_COPY_AND_ASSIGN(WebFrame); | 368 DISALLOW_COPY_AND_ASSIGN(WebFrame); |
| 369 }; | 369 }; |
| 370 | 370 |
| 371 #endif // WEBKIT_GLUE_WEBFRAME_H_ | 371 #endif // WEBKIT_GLUE_WEBFRAME_H_ |
| OLD | NEW |