summaryrefslogtreecommitdiffstats
path: root/android_webview
diff options
context:
space:
mode:
authorpfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-07 10:09:51 +0000
committerpfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-07 10:09:51 +0000
commit657d27379d53c0c2de431bd561affbb167fdfd5d (patch)
treec7fc8306e6cad7cb5e16b5697e95b6c37d7f97ab /android_webview
parent2f1159a2f6ed926bf68689b8a2191936a8be2de7 (diff)
downloadchromium_src-657d27379d53c0c2de431bd561affbb167fdfd5d.zip
chromium_src-657d27379d53c0c2de431bd561affbb167fdfd5d.tar.gz
chromium_src-657d27379d53c0c2de431bd561affbb167fdfd5d.tar.bz2
DevTools: make DevToolsTarget fields private, require DevToolsAgentHost upon creation.
R=jam@chromium.org, kaznacheev@chromium.org TBR=jam // for content API change (Url -> URL) Review URL: https://codereview.chromium.org/268673002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268698 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview')
-rw-r--r--android_webview/native/aw_dev_tools_server.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/android_webview/native/aw_dev_tools_server.cc b/android_webview/native/aw_dev_tools_server.cc
index fe3bffe..ab08ca5 100644
--- a/android_webview/native/aw_dev_tools_server.cc
+++ b/android_webview/native/aw_dev_tools_server.cc
@@ -42,8 +42,8 @@ class Target : public content::DevToolsTarget {
virtual std::string GetType() const OVERRIDE { return kTargetTypePage; }
virtual std::string GetTitle() const OVERRIDE { return title_; }
virtual std::string GetDescription() const OVERRIDE { return description_; }
- virtual GURL GetUrl() const OVERRIDE { return url_; }
- virtual GURL GetFaviconUrl() const OVERRIDE { return GURL(); }
+ virtual GURL GetURL() const OVERRIDE { return url_; }
+ virtual GURL GetFaviconURL() const OVERRIDE { return GURL(); }
virtual base::TimeTicks GetLastActivityTime() const OVERRIDE {
return last_activity_time_;
}