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); |
(...skipping 12 matching lines...) Expand all Loading... |
60 } | 60 } |
61 | 61 |
62 PermissionBubbleKioskBrowserTest::~PermissionBubbleKioskBrowserTest() { | 62 PermissionBubbleKioskBrowserTest::~PermissionBubbleKioskBrowserTest() { |
63 } | 63 } |
64 | 64 |
65 void PermissionBubbleKioskBrowserTest::SetUpCommandLine( | 65 void PermissionBubbleKioskBrowserTest::SetUpCommandLine( |
66 base::CommandLine* command_line) { | 66 base::CommandLine* command_line) { |
67 PermissionBubbleBrowserTest::SetUpCommandLine(command_line); | 67 PermissionBubbleBrowserTest::SetUpCommandLine(command_line); |
68 command_line->AppendSwitch(switches::kKioskMode); | 68 command_line->AppendSwitch(switches::kKioskMode); |
69 } | 69 } |
OLD | NEW |