Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(851)

Side by Side Diff: chrome/browser/ui/cocoa/extensions/extension_message_bubble_browsertest_mac.mm

Issue 2350733005: [Extensions] Fix a bug in the startup pages override bubble (Closed)
Patch Set: Trim includes Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698