blob: c11f8c25c6eb3a74c6465942e45cae21a557bf3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_MESSAGE_BUBBLE_BROWSERTEST_H_
#define CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_MESSAGE_BUBBLE_BROWSERTEST_H_
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/ui/toolbar/browser_actions_bar_browsertest.h"
class ExtensionMessageBubbleBrowserTest
: public BrowserActionsBarBrowserTest {
protected:
enum AnchorPosition {
ANCHOR_BROWSER_ACTION,
ANCHOR_WRENCH_MENU,
};
ExtensionMessageBubbleBrowserTest();
~ExtensionMessageBubbleBrowserTest() override;
// BrowserActionsBarBrowserTest:
void SetUpCommandLine(base::CommandLine* command_line) override;
// Checks the position of the bubble present in the given |browser|, when the
// bubble should be anchored at the given |anchor|.
virtual void CheckBubble(Browser* browser, AnchorPosition anchor) = 0;
// Closes the bubble present in the given |browser|.
virtual void CloseBubble(Browser* browser) = 0;
// The following are essentially the different tests, but we can't define the
// tests in this file, since it relies on platform-specific implementation
// (the above virtual methods).
// Tests that an extension bubble will be anchored to an extension action when
// there are extensions with actions.
void TestBubbleAnchoredToExtensionAction();
// Tests that an extension bubble will be anchored to the wrench menu when
// there aren't any extensions with actions.
// This also tests that the crashes in crbug.com/476426 are fixed.
void TestBubbleAnchoredToWrenchMenu();
// Tests that an extension bubble will be anchored to the wrench menu if there
// are no highlighted extensions, even if there's a benevolent extension with
// an action.
// Regression test for crbug.com/485614.
void TestBubbleAnchoredToWrenchMenuWithOtherAction();
// Tests that the extension bubble will show on startup.
void PreBubbleShowsOnStartup();
void TestBubbleShowsOnStartup();
private:
scoped_ptr<extensions::FeatureSwitch::ScopedOverride>
dev_mode_bubble_override_;
DISALLOW_COPY_AND_ASSIGN(ExtensionMessageBubbleBrowserTest);
};
#endif // CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_MESSAGE_BUBBLE_BROWSERTEST_H_
|