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

Unified Diff: webkit/tools/test_shell/test_shell_devtools_agent.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_agent.h
diff --git a/webkit/tools/test_shell/test_shell_devtools_agent.h b/webkit/tools/test_shell/test_shell_devtools_agent.h
deleted file mode 100644
index f5627525fedb9959c338049e67c83756e7636a62..0000000000000000000000000000000000000000
--- a/webkit/tools/test_shell/test_shell_devtools_agent.h
+++ /dev/null
@@ -1,61 +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_AGENT_H_
-#define WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_DEVTOOLS_AGENT_H_
-
-#include <string>
-
-#include "base/memory/weak_ptr.h"
-
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsAgentClient.h"
-
-namespace WebKit {
-
-class WebDevToolsAgent;
-class WebView;
-
-} // namespace WebKit
-
-class TestShellDevToolsCallArgs;
-class TestShellDevToolsClient;
-
-class TestShellDevToolsAgent : public WebKit::WebDevToolsAgentClient {
- public:
- TestShellDevToolsAgent();
- virtual ~TestShellDevToolsAgent();
-
- void SetWebView(WebKit::WebView* web_view);
-
- // WebDevToolsAgentClient implementation.
- virtual void sendMessageToInspectorFrontend(
- const WebKit::WebString& data);
- virtual int hostIdentifier();
- virtual void runtimePropertyChanged(const WebKit::WebString& name,
- const WebKit::WebString& value);
-
- virtual WebKit::WebDevToolsAgentClient::WebKitClientMessageLoop*
- createClientMessageLoop();
-
- void AsyncCall(const TestShellDevToolsCallArgs& args);
-
- void attach(TestShellDevToolsClient* client);
- void detach();
-
- bool evaluateInWebInspector(long call_id, const std::string& script);
-
- private:
- void Call(const TestShellDevToolsCallArgs& args);
- WebKit::WebDevToolsAgent* GetWebAgent();
-
- base::WeakPtrFactory<TestShellDevToolsAgent> weak_factory_;
- TestShellDevToolsClient* dev_tools_client_;
- int routing_id_;
- WebKit::WebDevToolsAgent* web_dev_tools_agent_;
- WebKit::WebView* web_view_;
-
- DISALLOW_COPY_AND_ASSIGN(TestShellDevToolsAgent);
-};
-
-#endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_DEVTOOLS_AGENT_H_

Powered by Google App Engine
This is Rietveld 408576698