Index: chrome/browser/devtools/devtools_adb_bridge.h |
diff --git a/chrome/browser/devtools/devtools_adb_bridge.h b/chrome/browser/devtools/devtools_adb_bridge.h |
index 1e0568772f43619b60676760f59219c2d0a0f94e..3364d73697c99ce38ac8ab1ee770d44da57d262f 100644 |
--- a/chrome/browser/devtools/devtools_adb_bridge.h |
+++ b/chrome/browser/devtools/devtools_adb_bridge.h |
@@ -133,10 +133,13 @@ class DevToolsAdbBridge |
scoped_refptr<AndroidDevice> device() { return device_; } |
std::string socket() { return socket_; } |
std::string name() { return name_; } |
+ std::string version() { return version_; } |
RemotePages& pages() { return pages_; } |
void AddPage(scoped_refptr<RemotePage> page) { pages_.push_back(page); } |
+ void SetVersion(const std::string& version) { version_ = version; } |
pfeldman
2013/08/08 16:25:14
set_version
Vladislav Kaznacheev
2013/08/09 08:56:10
Done.
|
+ |
void Open(const std::string& url); |
private: |
@@ -153,6 +156,7 @@ class DevToolsAdbBridge |
scoped_refptr<AndroidDevice> device_; |
const std::string socket_; |
const std::string name_; |
+ std::string version_; |
RemotePages pages_; |
DISALLOW_COPY_AND_ASSIGN(RemoteBrowser); |