Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(399)

Unified Diff: webkit/tools/test_shell/test_shell_devtools_client.h

Issue 15028002: Delete test_shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add dummy test_shell build target. Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webkit/tools/test_shell/test_shell_devtools_client.h
diff --git a/webkit/tools/test_shell/test_shell_devtools_client.h b/webkit/tools/test_shell/test_shell_devtools_client.h
deleted file mode 100644
index a20fe06dc027ae1b74ccaa3448e8221e6d3655c7..0000000000000000000000000000000000000000
--- a/webkit/tools/test_shell/test_shell_devtools_client.h
+++ /dev/null
@@ -1,51 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_DEVTOOLS_CLIENT_H_
-#define WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_DEVTOOLS_CLIENT_H_
-
-#include "base/memory/scoped_ptr.h"
-#include "base/memory/weak_ptr.h"
-
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsFrontendClient.h"
-
-namespace WebKit {
-
-class WebDevToolsFrontend;
-
-} // namespace WebKit
-
-class TestShellDevToolsCallArgs;
-class TestShellDevToolsAgent;
-
-class TestShellDevToolsClient: public WebKit::WebDevToolsFrontendClient {
- public:
- TestShellDevToolsClient(TestShellDevToolsAgent* agent,
- WebKit::WebView* web_view);
- virtual ~TestShellDevToolsClient();
-
- // WebDevToolsFrontendClient implementation
- virtual void sendMessageToBackend(const WebKit::WebString& data);
-
- virtual void activateWindow();
- virtual void closeWindow();
- virtual void dockWindow();
- virtual void undockWindow();
-
- void AsyncCall(const TestShellDevToolsCallArgs& args);
-
- void all_messages_processed();
-
- private:
- void Call(const TestShellDevToolsCallArgs& args);
-
- base::WeakPtrFactory<TestShellDevToolsClient> weak_factory_;
- TestShellDevToolsAgent* dev_tools_agent_;
- WebKit::WebView* web_view_;
- scoped_ptr<WebKit::WebDevToolsFrontend> web_tools_frontend_;
-
- DISALLOW_COPY_AND_ASSIGN(TestShellDevToolsClient);
-};
-
-#endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_DEVTOOLS_CLIENT_H_

Powered by Google App Engine
This is Rietveld 408576698