summaryrefslogtreecommitdiffstats
path: root/chrome/browser/automation/testing_automation_provider.cc
diff options
context:
space:
mode:
authornirnimesh@chromium.org <nirnimesh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-31 06:09:28 +0000
committernirnimesh@chromium.org <nirnimesh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-31 06:09:28 +0000
commita20548491e2b97baf01fa8d103eca5c1dd8d80db (patch)
tree192b8dce633b0b0263a1f16df032b35a39c8661f /chrome/browser/automation/testing_automation_provider.cc
parent82aa954402594c36e33633e1164d01724a8bea18 (diff)
downloadchromium_src-a20548491e2b97baf01fa8d103eca5c1dd8d80db.zip
chromium_src-a20548491e2b97baf01fa8d103eca5c1dd8d80db.tar.gz
chromium_src-a20548491e2b97baf01fa8d103eca5c1dd8d80db.tar.bz2
[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
Diffstat (limited to 'chrome/browser/automation/testing_automation_provider.cc')
-rw-r--r--chrome/browser/automation/testing_automation_provider.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/browser/automation/testing_automation_provider.cc b/chrome/browser/automation/testing_automation_provider.cc
index 41cc1f9..ac71546 100644
--- a/chrome/browser/automation/testing_automation_provider.cc
+++ b/chrome/browser/automation/testing_automation_provider.cc
@@ -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)