summaryrefslogtreecommitdiffstats
path: root/chrome/browser/automation/testing_automation_provider.cc
diff options
context:
space:
mode:
authorstevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-16 19:32:51 +0000
committerstevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-16 19:32:51 +0000
commitbafda13fc1c1f1a28ef15fd8703370dda0d1a5f3 (patch)
tree8a76684a0383ff568d3269b0d53ae32097a13356 /chrome/browser/automation/testing_automation_provider.cc
parent9032a08cf5482654c03d283f46bd21886e1b3e96 (diff)
downloadchromium_src-bafda13fc1c1f1a28ef15fd8703370dda0d1a5f3.zip
chromium_src-bafda13fc1c1f1a28ef15fd8703370dda0d1a5f3.tar.gz
chromium_src-bafda13fc1c1f1a28ef15fd8703370dda0d1a5f3.tar.bz2
Launch panels in Aura (through chrome.windows.create()) with a new panel view.
BUG=112198 TEST=Run an aura build with --aura-panels. Use an extension to open a panel with chrome.windows.create (e.g. see extension attached to issue, comment #38). Panel should open as a new Aura panel. Review URL: http://codereview.chromium.org/9392019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@122336 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/automation/testing_automation_provider.cc')
-rw-r--r--chrome/browser/automation/testing_automation_provider.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/automation/testing_automation_provider.cc b/chrome/browser/automation/testing_automation_provider.cc
index 3daf716..29c397f 100644
--- a/chrome/browser/automation/testing_automation_provider.cc
+++ b/chrome/browser/automation/testing_automation_provider.cc
@@ -2987,6 +2987,9 @@ void TestingAutomationProvider::GetBrowserInfo(
case chrome::VIEW_TYPE_APP_SHELL:
type = "APP_SHELL";
break;
+ case chrome::VIEW_TYPE_PANEL:
+ type = "PANEL";
+ break;
default:
type = "unknown";
break;