| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // TestWebViewDelegate class: | 5 // TestWebViewDelegate class: |
| 6 // This class implements the WebViewDelegate methods for the test shell. One | 6 // This class implements the WebViewDelegate methods for the test shell. One |
| 7 // instance is owned by each TestShell. | 7 // instance is owned by each TestShell. |
| 8 | 8 |
| 9 #ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_ | 9 #ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_ |
| 10 #define WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_ | 10 #define WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_ |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupMenuInfo.h" | 33 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupMenuInfo.h" |
| 34 #endif | 34 #endif |
| 35 | 35 |
| 36 #if defined(OS_WIN) | 36 #if defined(OS_WIN) |
| 37 #include <windows.h> | 37 #include <windows.h> |
| 38 | 38 |
| 39 #include "webkit/tools/test_shell/drop_delegate.h" | 39 #include "webkit/tools/test_shell/drop_delegate.h" |
| 40 #endif | 40 #endif |
| 41 | 41 |
| 42 #if defined(TOOLKIT_USES_GTK) | 42 #if defined(TOOLKIT_USES_GTK) |
| 43 #include <gdk/gdkcursor.h> | 43 #include <gdk/gdk.h> |
| 44 #endif | 44 #endif |
| 45 | 45 |
| 46 struct WebPreferences; | 46 struct WebPreferences; |
| 47 class GURL; | 47 class GURL; |
| 48 class TestShell; | 48 class TestShell; |
| 49 class WebWidgetHost; | 49 class WebWidgetHost; |
| 50 | 50 |
| 51 namespace WebKit { | 51 namespace WebKit { |
| 52 class WebDeviceOrientationClient; | 52 class WebDeviceOrientationClient; |
| 53 class WebSpeechInputController; | 53 class WebSpeechInputController; |
| (...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 std::string edit_command_name_; | 444 std::string edit_command_name_; |
| 445 std::string edit_command_value_; | 445 std::string edit_command_value_; |
| 446 | 446 |
| 447 // The mock spellchecker used in TestWebViewDelegate::spellCheck(). | 447 // The mock spellchecker used in TestWebViewDelegate::spellCheck(). |
| 448 MockSpellCheck mock_spellcheck_; | 448 MockSpellCheck mock_spellcheck_; |
| 449 | 449 |
| 450 DISALLOW_COPY_AND_ASSIGN(TestWebViewDelegate); | 450 DISALLOW_COPY_AND_ASSIGN(TestWebViewDelegate); |
| 451 }; | 451 }; |
| 452 | 452 |
| 453 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_ | 453 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_ |
| OLD | NEW |