| 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 "base/macros.h" | 5 #include "base/macros.h" |
| 6 #include "chrome/browser/ui/extensions/extension_message_bubble_browsertest.h" | 6 #include "chrome/browser/ui/extensions/extension_message_bubble_browsertest.h" |
| 7 #include "chrome/browser/ui/toolbar/toolbar_actions_bar.h" | 7 #include "chrome/browser/ui/toolbar/toolbar_actions_bar.h" |
| 8 #include "chrome/browser/ui/views/frame/browser_view.h" | 8 #include "chrome/browser/ui/views/frame/browser_view.h" |
| 9 #include "chrome/browser/ui/views/toolbar/app_menu_button.h" | 9 #include "chrome/browser/ui/views/toolbar/app_menu_button.h" |
| 10 #include "chrome/browser/ui/views/toolbar/browser_actions_container.h" | 10 #include "chrome/browser/ui/views/toolbar/browser_actions_container.h" |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 | 183 |
| 184 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleViewBrowserTest, | 184 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleViewBrowserTest, |
| 185 TestControlledHomeMessageBubble) { | 185 TestControlledHomeMessageBubble) { |
| 186 TestControlledHomeBubbleShown(); | 186 TestControlledHomeBubbleShown(); |
| 187 } | 187 } |
| 188 | 188 |
| 189 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleViewBrowserTest, | 189 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleViewBrowserTest, |
| 190 TestControlledSearchMessageBubble) { | 190 TestControlledSearchMessageBubble) { |
| 191 TestControlledSearchBubbleShown(); | 191 TestControlledSearchBubbleShown(); |
| 192 } | 192 } |
| 193 |
| 194 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleViewBrowserTest, |
| 195 PRE_TestControlledStartupMessageBubble) { |
| 196 PreTestControlledStartupBubbleShown(); |
| 197 } |
| 198 |
| 199 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleViewBrowserTest, |
| 200 TestControlledStartupMessageBubble) { |
| 201 TestControlledStartupBubbleShown(); |
| 202 } |
| 203 |
| 204 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleViewBrowserTest, |
| 205 PRE_TestControlledStartupNotShownOnRestart) { |
| 206 PreTestControlledStartupNotShownOnRestart(); |
| 207 } |
| 208 |
| 209 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleViewBrowserTest, |
| 210 TestControlledStartupNotShownOnRestart) { |
| 211 TestControlledStartupNotShownOnRestart(); |
| 212 } |
| 213 |
| 193 #endif // defined(OS_WIN) | 214 #endif // defined(OS_WIN) |
| 194 | 215 |
| 195 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleViewBrowserTest, | 216 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleViewBrowserTest, |
| 196 TestBubbleWithMultipleWindows) { | 217 TestBubbleWithMultipleWindows) { |
| 197 TestBubbleWithMultipleWindows(); | 218 TestBubbleWithMultipleWindows(); |
| 198 } | 219 } |
| 199 | 220 |
| 200 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleViewBrowserTest, | 221 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleViewBrowserTest, |
| 201 TestClickingLearnMoreButton) { | 222 TestClickingLearnMoreButton) { |
| 202 TestClickingLearnMoreButton(); | 223 TestClickingLearnMoreButton(); |
| 203 } | 224 } |
| 204 | 225 |
| 205 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleViewBrowserTest, | 226 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleViewBrowserTest, |
| 206 TestClickingActionButton) { | 227 TestClickingActionButton) { |
| 207 TestClickingActionButton(); | 228 TestClickingActionButton(); |
| 208 } | 229 } |
| 209 | 230 |
| 210 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleViewBrowserTest, | 231 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleViewBrowserTest, |
| 211 TestClickingDismissButton) { | 232 TestClickingDismissButton) { |
| 212 TestClickingDismissButton(); | 233 TestClickingDismissButton(); |
| 213 } | 234 } |
| OLD | NEW |