| 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/browser_window.h" | 6 #include "chrome/browser/ui/browser_window.h" |
| 7 #import "chrome/browser/ui/cocoa/browser_window_controller.h" | 7 #import "chrome/browser/ui/cocoa/browser_window_controller.h" |
| 8 #import "chrome/browser/ui/cocoa/extensions/browser_action_button.h" | 8 #import "chrome/browser/ui/cocoa/extensions/browser_action_button.h" |
| 9 #import "chrome/browser/ui/cocoa/extensions/browser_actions_controller.h" | 9 #import "chrome/browser/ui/cocoa/extensions/browser_actions_controller.h" |
| 10 #import "chrome/browser/ui/cocoa/extensions/toolbar_actions_bar_bubble_mac.h" | 10 #import "chrome/browser/ui/cocoa/extensions/toolbar_actions_bar_bubble_mac.h" |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 | 232 |
| 233 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleBrowserTestMac, | 233 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleBrowserTestMac, |
| 234 TestControlledHomeMessageBubble) { | 234 TestControlledHomeMessageBubble) { |
| 235 TestControlledHomeBubbleShown(); | 235 TestControlledHomeBubbleShown(); |
| 236 } | 236 } |
| 237 | 237 |
| 238 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleBrowserTestMac, | 238 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleBrowserTestMac, |
| 239 TestControlledSearchMessageBubble) { | 239 TestControlledSearchMessageBubble) { |
| 240 TestControlledSearchBubbleShown(); | 240 TestControlledSearchBubbleShown(); |
| 241 } | 241 } |
| 242 |
| 243 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleBrowserTestMac, |
| 244 PRE_TestControlledStartupMessageBubble) { |
| 245 PreTestControlledStartupBubbleShown(); |
| 246 } |
| 247 |
| 248 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleBrowserTestMac, |
| 249 TestControlledStartupMessageBubble) { |
| 250 TestControlledStartupBubbleShown(); |
| 251 } |
| 252 |
| 253 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleBrowserTestMac, |
| 254 PRE_TestControlledStartupNotShownOnRestart) { |
| 255 PreTestControlledStartupNotShownOnRestart(); |
| 256 } |
| 257 |
| 258 IN_PROC_BROWSER_TEST_F(ExtensionMessageBubbleBrowserTestMac, |
| 259 TestControlledStartupNotShownOnRestart) { |
| 260 TestControlledStartupNotShownOnRestart(); |
| 261 } |
| OLD | NEW |