| 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_WEBVIEW_IMPL_H__ | 5 #ifndef WEBKIT_GLUE_WEBVIEW_IMPL_H__ |
| 6 #define WEBKIT_GLUE_WEBVIEW_IMPL_H__ | 6 #define WEBKIT_GLUE_WEBVIEW_IMPL_H__ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/compiler_specific.h" |
| 11 #include "base/gfx/platform_canvas.h" | 12 #include "base/gfx/platform_canvas.h" |
| 12 #include "base/gfx/point.h" | 13 #include "base/gfx/point.h" |
| 13 #include "base/gfx/size.h" | 14 #include "base/gfx/size.h" |
| 14 #include "webkit/glue/webdropdata.h" | 15 #include "webkit/glue/webdropdata.h" |
| 15 #include "webkit/glue/webframe_impl.h" | 16 #include "webkit/glue/webframe_impl.h" |
| 16 #include "webkit/glue/webpreferences.h" | 17 #include "webkit/glue/webpreferences.h" |
| 17 #include "webkit/glue/webview.h" | 18 #include "webkit/glue/webview.h" |
| 18 | 19 |
| 19 #pragma warning(push, 0) | 20 MSVC_PUSH_WARNING_LEVEL(0); |
| 20 #include "webkit/port/history/BackForwardList.h" | 21 #include "webkit/port/history/BackForwardList.h" |
| 21 #include "webkit/port/platform/WidgetClientWin.h" | 22 #include "webkit/port/platform/WidgetClientWin.h" |
| 22 #pragma warning(pop) | 23 MSVC_POP_WARNING(); |
| 23 | 24 |
| 24 namespace WebCore { | 25 namespace WebCore { |
| 25 class Frame; | 26 class Frame; |
| 26 class HistoryItem; | 27 class HistoryItem; |
| 27 class KeyboardEvent; | 28 class KeyboardEvent; |
| 28 class Page; | 29 class Page; |
| 29 class PlatformKeyboardEvent; | 30 class PlatformKeyboardEvent; |
| 30 class Range; | 31 class Range; |
| 31 class Widget; | 32 class Widget; |
| 32 } | 33 } |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 return g_current_input_event; | 301 return g_current_input_event; |
| 301 } | 302 } |
| 302 private: | 303 private: |
| 303 static const WebInputEvent* g_current_input_event; | 304 static const WebInputEvent* g_current_input_event; |
| 304 | 305 |
| 305 DISALLOW_EVIL_CONSTRUCTORS(WebViewImpl); | 306 DISALLOW_EVIL_CONSTRUCTORS(WebViewImpl); |
| 306 }; | 307 }; |
| 307 | 308 |
| 308 #endif // WEBKIT_GLUE_WEBVIEW_IMPL_H__ | 309 #endif // WEBKIT_GLUE_WEBVIEW_IMPL_H__ |
| 309 | 310 |
| OLD | NEW |