blob: 81f870db21c99d9ef3d16baedf6b80d293a1c0cc (
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
|
// Copyright (c) 2009 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_VIEWS_FIRST_RUN_BUBBLE_H_
#define CHROME_BROWSER_VIEWS_FIRST_RUN_BUBBLE_H_
#include "base/compiler_specific.h"
#include "base/task.h"
#include "chrome/browser/views/info_bubble.h"
class FirstRunBubbleViewBase;
class Profile;
class FirstRunBubble : public InfoBubble,
public InfoBubbleDelegate {
public:
static FirstRunBubble* Show(Profile* profile, views::Window* window,
const gfx::Rect& position_relative_to,
bool use_OEM_bubble);
private:
FirstRunBubble();
virtual ~FirstRunBubble();
void set_view(FirstRunBubbleViewBase* view) { view_ = view; }
// Re-enable the parent window.
void EnableParent();
#if defined(OS_WIN)
// Overridden from InfoBubble:
virtual void OnActivate(UINT action, BOOL minimized, HWND window);
#endif
// InfoBubbleDelegate.
virtual void InfoBubbleClosing(InfoBubble* info_bubble,
bool closed_by_escape);
virtual bool CloseOnEscape() { return true; }
// Whether we have already been activated.
bool has_been_activated_;
ScopedRunnableMethodFactory<FirstRunBubble> enable_window_method_factory_;
// The view inside the FirstRunBubble.
FirstRunBubbleViewBase* view_;
DISALLOW_COPY_AND_ASSIGN(FirstRunBubble);
};
#endif // CHROME_BROWSER_VIEWS_FIRST_RUN_BUBBLE_H_
|