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

Unified Diff: content/public/browser/devtools_client_host.h

Issue 449043002: [DevTools] Make DevTools clients talk directly to DevToolsAgentHost instead of using DevToolsManage… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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: content/public/browser/devtools_client_host.h
diff --git a/content/public/browser/devtools_client_host.h b/content/public/browser/devtools_client_host.h
deleted file mode 100644
index 67b7003ab501cb513e6e748a4d6616911bd48cb2..0000000000000000000000000000000000000000
--- a/content/public/browser/devtools_client_host.h
+++ /dev/null
@@ -1,45 +0,0 @@
-// Copyright (c) 2012 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 CONTENT_PUBLIC_BROWSER_DEVTOOLS_CLIENT_HOST_H_
-#define CONTENT_PUBLIC_BROWSER_DEVTOOLS_CLIENT_HOST_H_
-
-#include <string>
-
-#include "base/basictypes.h"
-#include "content/common/content_export.h"
-
-namespace IPC {
-class Message;
-}
-
-namespace content {
-
-class RenderViewHost;
-class WebContents;
-
-class DevToolsFrontendHostDelegate;
-
-// Describes interface for managing devtools clients from browser process. There
-// are currently two types of clients: devtools windows and TCP socket
-// debuggers.
-class CONTENT_EXPORT DevToolsClientHost {
- public:
- virtual ~DevToolsClientHost() {}
-
- // Dispatches given message on the front-end.
- virtual void DispatchOnInspectorFrontend(const std::string& message) = 0;
-
- // This method is called when the contents inspected by this devtools client
- // is closing.
- virtual void InspectedContentsClosing() = 0;
-
- // Called to notify client that it has been kicked out by some other client
- // with greater priority.
- virtual void ReplacedWithAnotherClient() = 0;
-};
-
-} // namespace content
-
-#endif // CONTENT_PUBLIC_BROWSER_DEVTOOLS_CLIENT_HOST_H_

Powered by Google App Engine
This is Rietveld 408576698