| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ui/website_settings/permission_bubble_browser_test_util
.h" | 5 #include "chrome/browser/ui/website_settings/permission_bubble_browser_test_util
.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/memory/ptr_util.h" |
| 8 #include "chrome/browser/extensions/extension_browsertest.h" | 9 #include "chrome/browser/extensions/extension_browsertest.h" |
| 9 #include "chrome/browser/permissions/mock_permission_request.h" | 10 #include "chrome/browser/permissions/mock_permission_request.h" |
| 10 #include "chrome/browser/ui/browser.h" | 11 #include "chrome/browser/ui/browser.h" |
| 11 #include "chrome/browser/ui/browser_finder.h" | 12 #include "chrome/browser/ui/browser_finder.h" |
| 12 #include "chrome/browser/ui/browser_window.h" | 13 #include "chrome/browser/ui/browser_window.h" |
| 13 #include "chrome/browser/ui/extensions/app_launch_params.h" | 14 #include "chrome/browser/ui/extensions/app_launch_params.h" |
| 14 #include "chrome/browser/ui/extensions/application_launch.h" | 15 #include "chrome/browser/ui/extensions/application_launch.h" |
| 15 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 16 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
| 16 #include "chrome/common/chrome_switches.h" | 17 #include "chrome/common/chrome_switches.h" |
| 17 #include "chrome/grit/generated_resources.h" | 18 #include "chrome/grit/generated_resources.h" |
| 18 #include "ui/base/l10n/l10n_util.h" | 19 #include "ui/base/l10n/l10n_util.h" |
| 19 | 20 |
| 20 TestPermissionBubbleViewDelegate::TestPermissionBubbleViewDelegate() | 21 TestPermissionBubbleViewDelegate::TestPermissionBubbleViewDelegate() |
| 21 : PermissionPrompt::Delegate() { | 22 : PermissionPrompt::Delegate() { |
| 22 } | 23 } |
| 23 | 24 |
| 24 PermissionBubbleBrowserTest::PermissionBubbleBrowserTest() { | 25 PermissionBubbleBrowserTest::PermissionBubbleBrowserTest() { |
| 25 } | 26 } |
| 26 | 27 |
| 27 PermissionBubbleBrowserTest::~PermissionBubbleBrowserTest() { | 28 PermissionBubbleBrowserTest::~PermissionBubbleBrowserTest() { |
| 28 } | 29 } |
| 29 | 30 |
| 30 void PermissionBubbleBrowserTest::SetUpOnMainThread() { | 31 void PermissionBubbleBrowserTest::SetUpOnMainThread() { |
| 31 ExtensionBrowserTest::SetUpOnMainThread(); | 32 ExtensionBrowserTest::SetUpOnMainThread(); |
| 32 | 33 |
| 33 // Add a single permission request. | 34 // Add a single permission request. |
| 34 MockPermissionRequest* request = new MockPermissionRequest( | 35 requests_.push_back(base::MakeUnique<MockPermissionRequest>( |
| 35 "Request 1", l10n_util::GetStringUTF8(IDS_PERMISSION_ALLOW), | 36 "Request 1", l10n_util::GetStringUTF8(IDS_PERMISSION_ALLOW), |
| 36 l10n_util::GetStringUTF8(IDS_PERMISSION_DENY)); | 37 l10n_util::GetStringUTF8(IDS_PERMISSION_DENY))); |
| 37 requests_.push_back(request); | |
| 38 } | 38 } |
| 39 | 39 |
| 40 Browser* PermissionBubbleBrowserTest::OpenExtensionAppWindow() { | 40 Browser* PermissionBubbleBrowserTest::OpenExtensionAppWindow() { |
| 41 auto* extension = | 41 auto* extension = |
| 42 LoadExtension(test_data_dir_.AppendASCII("app_with_panel_container/")); | 42 LoadExtension(test_data_dir_.AppendASCII("app_with_panel_container/")); |
| 43 CHECK(extension); | 43 CHECK(extension); |
| 44 | 44 |
| 45 AppLaunchParams params( | 45 AppLaunchParams params( |
| 46 browser()->profile(), extension, extensions::LAUNCH_CONTAINER_PANEL, | 46 browser()->profile(), extension, extensions::LAUNCH_CONTAINER_PANEL, |
| 47 WindowOpenDisposition::NEW_WINDOW, extensions::SOURCE_TEST); | 47 WindowOpenDisposition::NEW_WINDOW, extensions::SOURCE_TEST); |
| 48 | 48 |
| 49 content::WebContents* app_window = OpenApplication(params); | 49 content::WebContents* app_window = OpenApplication(params); |
| 50 CHECK(app_window); | 50 CHECK(app_window); |
| 51 | 51 |
| 52 Browser* app_browser = chrome::FindBrowserWithWebContents(app_window); | 52 Browser* app_browser = chrome::FindBrowserWithWebContents(app_window); |
| 53 CHECK(app_browser); | 53 CHECK(app_browser); |
| 54 CHECK(app_browser->is_app()); | 54 CHECK(app_browser->is_app()); |
| 55 | 55 |
| 56 return app_browser; | 56 return app_browser; |
| 57 } | 57 } |
| 58 | 58 |
| 59 std::vector<PermissionRequest*> PermissionBubbleBrowserTest::requests() { |
| 60 std::vector<PermissionRequest*> result; |
| 61 for (const auto& request : requests_) |
| 62 result.push_back(request.get()); |
| 63 return result; |
| 64 } |
| 65 |
| 59 PermissionBubbleKioskBrowserTest::PermissionBubbleKioskBrowserTest() { | 66 PermissionBubbleKioskBrowserTest::PermissionBubbleKioskBrowserTest() { |
| 60 } | 67 } |
| 61 | 68 |
| 62 PermissionBubbleKioskBrowserTest::~PermissionBubbleKioskBrowserTest() { | 69 PermissionBubbleKioskBrowserTest::~PermissionBubbleKioskBrowserTest() { |
| 63 } | 70 } |
| 64 | 71 |
| 65 void PermissionBubbleKioskBrowserTest::SetUpCommandLine( | 72 void PermissionBubbleKioskBrowserTest::SetUpCommandLine( |
| 66 base::CommandLine* command_line) { | 73 base::CommandLine* command_line) { |
| 67 PermissionBubbleBrowserTest::SetUpCommandLine(command_line); | 74 PermissionBubbleBrowserTest::SetUpCommandLine(command_line); |
| 68 command_line->AppendSwitch(switches::kKioskMode); | 75 command_line->AppendSwitch(switches::kKioskMode); |
| 69 } | 76 } |
| OLD | NEW |