| 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/permission_bubble/permission_bubble_browser_test_uti
l.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/memory/ptr_util.h" | 8 #include "base/memory/ptr_util.h" |
| 9 #include "chrome/browser/extensions/extension_browsertest.h" | 9 #include "chrome/browser/extensions/extension_browsertest.h" |
| 10 #include "chrome/browser/permissions/mock_permission_request.h" | 10 #include "chrome/browser/permissions/mock_permission_request.h" |
| 11 #include "chrome/browser/ui/browser.h" | 11 #include "chrome/browser/ui/browser.h" |
| 12 #include "chrome/browser/ui/browser_finder.h" | 12 #include "chrome/browser/ui/browser_finder.h" |
| 13 #include "chrome/browser/ui/browser_window.h" | 13 #include "chrome/browser/ui/browser_window.h" |
| 14 #include "chrome/browser/ui/extensions/app_launch_params.h" | 14 #include "chrome/browser/ui/extensions/app_launch_params.h" |
| 15 #include "chrome/browser/ui/extensions/application_launch.h" | 15 #include "chrome/browser/ui/extensions/application_launch.h" |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 } | 67 } |
| 68 | 68 |
| 69 PermissionBubbleKioskBrowserTest::~PermissionBubbleKioskBrowserTest() { | 69 PermissionBubbleKioskBrowserTest::~PermissionBubbleKioskBrowserTest() { |
| 70 } | 70 } |
| 71 | 71 |
| 72 void PermissionBubbleKioskBrowserTest::SetUpCommandLine( | 72 void PermissionBubbleKioskBrowserTest::SetUpCommandLine( |
| 73 base::CommandLine* command_line) { | 73 base::CommandLine* command_line) { |
| 74 PermissionBubbleBrowserTest::SetUpCommandLine(command_line); | 74 PermissionBubbleBrowserTest::SetUpCommandLine(command_line); |
| 75 command_line->AppendSwitch(switches::kKioskMode); | 75 command_line->AppendSwitch(switches::kKioskMode); |
| 76 } | 76 } |
| OLD | NEW |