diff options
-rw-r--r-- | chrome/browser/automation/testing_automation_provider.cc | 5 |
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) |