diff options
author | mnaganov@chromium.org <mnaganov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-27 14:28:35 +0000 |
---|---|---|
committer | mnaganov@chromium.org <mnaganov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-27 14:28:35 +0000 |
commit | 616d494697cd87234a27666cb4cf20dd33f96c34 (patch) | |
tree | 11166521556f7646f1103c808d599adf9379421a /webkit | |
parent | ea0b3b4b360db0c3973056338a5bad37cad23811 (diff) | |
download | chromium_src-616d494697cd87234a27666cb4cf20dd33f96c34.zip chromium_src-616d494697cd87234a27666cb4cf20dd33f96c34.tar.gz chromium_src-616d494697cd87234a27666cb4cf20dd33f96c34.tar.bz2 |
[Android] Abandon bundling DevTools frontends for mobile apps
From now, DevTools frontends are only served from the cloud using
Blink revision number. This enabled all mobile Chromium apps
(Chrome, Chromium TestShell, WebView) to be inspectable from chrome://inspect.
An exception is made for Content Shell, as it will be used for running layout
tests (including Inspector layout tests) on Android and thus it needs the
frontend to be bundled.
BUG=138925
TBR=jochen (to work around not formally having Android owners for chrome/browser/chrome_browser_main_android.*)
Review URL: https://chromiumcodereview.appspot.com/17389005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@208913 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/common/user_agent/user_agent_util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/webkit/common/user_agent/user_agent_util.h b/webkit/common/user_agent/user_agent_util.h index 3fbdf54..e23b809 100644 --- a/webkit/common/user_agent/user_agent_util.h +++ b/webkit/common/user_agent/user_agent_util.h @@ -22,6 +22,8 @@ WEBKIT_USER_AGENT_EXPORT std::string GetWebKitVersion(); WEBKIT_USER_AGENT_EXPORT int GetWebKitMajorVersion(); WEBKIT_USER_AGENT_EXPORT int GetWebKitMinorVersion(); +WEBKIT_USER_AGENT_EXPORT std::string GetWebKitRevision(); + // Helper function to generate a full user agent string from a short // product name. WEBKIT_USER_AGENT_EXPORT std::string BuildUserAgentFromProduct( |