| 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 #ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_DEVTOOLS_CLIENT_H_ | 5 #ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_DEVTOOLS_CLIENT_H_ |
| 6 #define WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_DEVTOOLS_CLIENT_H_ | 6 #define WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_DEVTOOLS_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "base/task.h" | |
| 11 | 10 |
| 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsFrontendCl
ient.h" | 11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsFrontendCl
ient.h" |
| 13 | 12 |
| 14 namespace WebKit { | 13 namespace WebKit { |
| 15 | 14 |
| 16 class WebDevToolsFrontend; | 15 class WebDevToolsFrontend; |
| 17 | 16 |
| 18 } // namespace WebKit | 17 } // namespace WebKit |
| 19 | 18 |
| 20 class TestShellDevToolsCallArgs; | 19 class TestShellDevToolsCallArgs; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 43 | 42 |
| 44 base::WeakPtrFactory<TestShellDevToolsClient> weak_factory_; | 43 base::WeakPtrFactory<TestShellDevToolsClient> weak_factory_; |
| 45 TestShellDevToolsAgent* dev_tools_agent_; | 44 TestShellDevToolsAgent* dev_tools_agent_; |
| 46 WebKit::WebView* web_view_; | 45 WebKit::WebView* web_view_; |
| 47 scoped_ptr<WebKit::WebDevToolsFrontend> web_tools_frontend_; | 46 scoped_ptr<WebKit::WebDevToolsFrontend> web_tools_frontend_; |
| 48 | 47 |
| 49 DISALLOW_COPY_AND_ASSIGN(TestShellDevToolsClient); | 48 DISALLOW_COPY_AND_ASSIGN(TestShellDevToolsClient); |
| 50 }; | 49 }; |
| 51 | 50 |
| 52 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_DEVTOOLS_CLIENT_H_ | 51 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_DEVTOOLS_CLIENT_H_ |
| OLD | NEW |