| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_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 <wtf/OwnPtr.h> | 8 #include <wtf/OwnPtr.h> |
| 9 #include <wtf/RefCounted.h> | 9 #include <wtf/RefCounted.h> |
| 10 | 10 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 class WebMouseEvent; | 42 class WebMouseEvent; |
| 43 class WebMouseWheelEvent; | 43 class WebMouseWheelEvent; |
| 44 class WebSettingsImpl; | 44 class WebSettingsImpl; |
| 45 } | 45 } |
| 46 | 46 |
| 47 namespace webkit_glue { | 47 namespace webkit_glue { |
| 48 class ImageResourceFetcher; | 48 class ImageResourceFetcher; |
| 49 } | 49 } |
| 50 | 50 |
| 51 class AutocompletePopupMenuClient; | 51 class AutocompletePopupMenuClient; |
| 52 class SearchableFormData; | |
| 53 class WebHistoryItemImpl; | 52 class WebHistoryItemImpl; |
| 54 class WebDevToolsAgentImpl; | 53 class WebDevToolsAgentImpl; |
| 55 | 54 |
| 56 class WebViewImpl : public WebKit::WebView, public RefCounted<WebViewImpl> { | 55 class WebViewImpl : public WebKit::WebView, public RefCounted<WebViewImpl> { |
| 57 public: | 56 public: |
| 58 // WebWidget methods: | 57 // WebWidget methods: |
| 59 virtual void close(); | 58 virtual void close(); |
| 60 virtual WebKit::WebSize size() { return size_; } | 59 virtual WebKit::WebSize size() { return size_; } |
| 61 virtual void resize(const WebKit::WebSize& new_size); | 60 virtual void resize(const WebKit::WebSize& new_size); |
| 62 virtual void layout(); | 61 virtual void layout(); |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 393 static const WebKit::WebInputEvent* current_input_event() { | 392 static const WebKit::WebInputEvent* current_input_event() { |
| 394 return g_current_input_event; | 393 return g_current_input_event; |
| 395 } | 394 } |
| 396 private: | 395 private: |
| 397 static const WebKit::WebInputEvent* g_current_input_event; | 396 static const WebKit::WebInputEvent* g_current_input_event; |
| 398 | 397 |
| 399 DISALLOW_COPY_AND_ASSIGN(WebViewImpl); | 398 DISALLOW_COPY_AND_ASSIGN(WebViewImpl); |
| 400 }; | 399 }; |
| 401 | 400 |
| 402 #endif // WEBKIT_GLUE_WEBVIEW_IMPL_H_ | 401 #endif // WEBKIT_GLUE_WEBVIEW_IMPL_H_ |
| OLD | NEW |