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

Unified Diff: chrome/browser/devtools/device/devtools_device_discovery.h

Issue 2575363002: Fixed not working inspector in case of Remote Target (Closed)
Patch Set: Fixed not working inspector in case of Remote Target Created 4 years 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
« no previous file with comments | « AUTHORS ('k') | chrome/browser/devtools/device/devtools_device_discovery.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/devtools/device/devtools_device_discovery.h
diff --git a/chrome/browser/devtools/device/devtools_device_discovery.h b/chrome/browser/devtools/device/devtools_device_discovery.h
index e89e84117c5c1e2c4b7a0f4efd88e74f775eac6d..d24c0513fe30ea5f6e68f9efacf733fc50804273 100644
--- a/chrome/browser/devtools/device/devtools_device_discovery.h
+++ b/chrome/browser/devtools/device/devtools_device_discovery.h
@@ -52,6 +52,7 @@ class DevToolsDeviceDiscovery {
const std::string& display_name() { return display_name_; }
const std::string& user() { return user_; }
const std::string& version() { return version_; }
+ const std::string& webkit_version() { return webkit_version_; }
const RemotePages& pages() { return pages_; }
bool IsChrome();
@@ -59,6 +60,7 @@ class DevToolsDeviceDiscovery {
using ParsedVersion = std::vector<int>;
ParsedVersion GetParsedVersion();
+ std::string WebKitRevision();
private:
friend class base::RefCounted<RemoteBrowser>;
@@ -75,6 +77,7 @@ class DevToolsDeviceDiscovery {
std::string user_;
AndroidDeviceManager::BrowserInfo::Type type_;
std::string version_;
+ std::string webkit_version_;
RemotePages pages_;
DISALLOW_COPY_AND_ASSIGN(RemoteBrowser);
« no previous file with comments | « AUTHORS ('k') | chrome/browser/devtools/device/devtools_device_discovery.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698