summaryrefslogtreecommitdiffstats
path: root/chromium/content/public/browser/devtools_target.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/public/browser/devtools_target.h')
-rw-r--r--chromium/content/public/browser/devtools_target.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/chromium/content/public/browser/devtools_target.h b/chromium/content/public/browser/devtools_target.h
index 3fcac0572f3..80085350ae1 100644
--- a/chromium/content/public/browser/devtools_target.h
+++ b/chromium/content/public/browser/devtools_target.h
@@ -28,6 +28,9 @@ class DevToolsTarget {
// Returns the unique target id.
virtual std::string GetId() const = 0;
+ // Returns the id of the parent target, or empty string if no parent.
+ virtual std::string GetParentId() const = 0;
+
// Returns the target type.
virtual std::string GetType() const = 0;
@@ -38,10 +41,10 @@ class DevToolsTarget {
virtual std::string GetDescription() const = 0;
// Returns the url associated with this target.
- virtual GURL GetUrl() const = 0;
+ virtual GURL GetURL() const = 0;
// Returns the favicon url for this target.
- virtual GURL GetFaviconUrl() const = 0;
+ virtual GURL GetFaviconURL() const = 0;
// Returns the time when the target was last active.
virtual base::TimeTicks GetLastActivityTime() const = 0;