[pyauto] GetBrowserInfo() returns info about aura

BUG=None
TEST=None

R=dtu@chromium.org


Review URL: http://codereview.chromium.org/9293024

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119864 0039d316-1c4b-4281-b951-d872f2087c98
parent 82aa9544
......@@ -2841,6 +2841,11 @@ void TestingAutomationProvider::GetBrowserInfo(
FilePath dumps_path;
PathService::Get(chrome::DIR_CRASH_DUMPS, &dumps_path);
properties->SetString("DIR_CRASH_DUMPS", dumps_path.value());
#if defined(USE_AURA)
properties->SetBoolean("aura", true);
#else
properties->SetBoolean("aura", false);
#endif
std::string branding;
#if defined(GOOGLE_CHROME_BUILD)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment