| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 27 matching lines...) Expand all Loading... |
| 38 #if defined(OS_WIN) | 38 #if defined(OS_WIN) |
| 39 #include <windows.h> | 39 #include <windows.h> |
| 40 | 40 |
| 41 #include "webkit/tools/test_shell/drop_delegate.h" | 41 #include "webkit/tools/test_shell/drop_delegate.h" |
| 42 #endif | 42 #endif |
| 43 | 43 |
| 44 #if defined(TOOLKIT_GTK) | 44 #if defined(TOOLKIT_GTK) |
| 45 #include <gdk/gdk.h> | 45 #include <gdk/gdk.h> |
| 46 #endif | 46 #endif |
| 47 | 47 |
| 48 struct WebPreferences; | |
| 49 class GURL; | 48 class GURL; |
| 50 class TestShell; | 49 class TestShell; |
| 51 class WebWidgetHost; | 50 class WebWidgetHost; |
| 52 | 51 |
| 53 namespace WebKit { | 52 namespace WebKit { |
| 54 class WebDeviceOrientationClient; | 53 class WebDeviceOrientationClient; |
| 55 class WebStorageNamespace; | 54 class WebStorageNamespace; |
| 56 struct WebWindowFeatures; | 55 struct WebWindowFeatures; |
| 57 } | 56 } |
| 58 | 57 |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 440 std::string edit_command_name_; | 439 std::string edit_command_name_; |
| 441 std::string edit_command_value_; | 440 std::string edit_command_value_; |
| 442 | 441 |
| 443 // The mock spellchecker used in TestWebViewDelegate::spellCheck(). | 442 // The mock spellchecker used in TestWebViewDelegate::spellCheck(). |
| 444 MockSpellCheck mock_spellcheck_; | 443 MockSpellCheck mock_spellcheck_; |
| 445 | 444 |
| 446 DISALLOW_COPY_AND_ASSIGN(TestWebViewDelegate); | 445 DISALLOW_COPY_AND_ASSIGN(TestWebViewDelegate); |
| 447 }; | 446 }; |
| 448 | 447 |
| 449 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_ | 448 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_ |
| OLD | NEW |