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

Unified Diff: components/devtools_discovery/devtools_target_descriptor.h

Issue 2273063002: DevTools: remove DevToolsTargetDescriptor and its implementations, we are now based on devtools age… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebaselined Created 4 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: components/devtools_discovery/devtools_target_descriptor.h
diff --git a/components/devtools_discovery/devtools_target_descriptor.h b/components/devtools_discovery/devtools_target_descriptor.h
deleted file mode 100644
index 482c07859eced7847cbc0dd46e02653f6bf37472..0000000000000000000000000000000000000000
--- a/components/devtools_discovery/devtools_target_descriptor.h
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright 2015 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 COMPONENTS_DEVTOOLS_DISCOVERY_DEVTOOLS_TARGET_DESCRIPTOR_H_
-#define COMPONENTS_DEVTOOLS_DISCOVERY_DEVTOOLS_TARGET_DESCRIPTOR_H_
-
-#include <string>
-#include <vector>
-
-#include "base/memory/ref_counted.h"
-#include "base/time/time.h"
-#include "url/gurl.h"
-
-namespace content {
-class DevToolsAgentHost;
-}
-
-namespace devtools_discovery {
-
-// DevToolsTargetDescriptor provides information about devtools target
-// and can be used to manipulate the target and query its details.
-// Instantiation and discovery of DevToolsTargetDescriptor instances
-// is the responsibility of DevToolsDiscoveryManager.
-class DevToolsTargetDescriptor {
- public:
- using List = std::vector<DevToolsTargetDescriptor*>;
- virtual ~DevToolsTargetDescriptor() {}
-
- // Returns the agent host for this target.
- virtual scoped_refptr<content::DevToolsAgentHost> GetAgentHost() const = 0;
-};
-
-} // namespace devtools_discovery
-
-#endif // COMPONENTS_DEVTOOLS_DISCOVERY_DEVTOOLS_TARGET_DESCRIPTOR_H_

Powered by Google App Engine
This is Rietveld 408576698