blob: 9e18e44b0a2bf497d1a12e7f8d12ccc589bafe8f (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
// Copyright (c) 2012 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_EXTENSIONS_APP_NOTIFY_CHANNEL_UI_H_
#define CHROME_BROWSER_EXTENSIONS_APP_NOTIFY_CHANNEL_UI_H_
#include <string>
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "chrome/browser/sync/profile_sync_service_observer.h"
class Profile;
class TabContents;
// An interface for prompting a user to sign in to sync so that we can create
// an app notification channel for one of their apps.
class AppNotifyChannelUI {
public:
virtual ~AppNotifyChannelUI() {}
// Used to customize the UI we show.
enum UIType {
// Do not prompt the user with an infobar.
NO_INFOBAR,
// Ask if the app can show notifications.
NOTIFICATION_INFOBAR,
};
class Delegate {
public:
// A callback for whether the user successfully set up sync or not.
virtual void OnSyncSetupResult(bool enabled) = 0;
};
// Shows a prompt for sync setup - |delegate| will be called back later when
// setup is complete or cancelled. This should only be called once per
// instance.
virtual void PromptSyncSetup(Delegate* delegate) = 0;
};
class AppNotifyChannelUIImpl : public AppNotifyChannelUI,
public ProfileSyncServiceObserver {
public:
AppNotifyChannelUIImpl(Profile* profile,
TabContents* tab_contents,
const std::string& app_name,
AppNotifyChannelUI::UIType ui_type);
virtual ~AppNotifyChannelUIImpl();
// AppNotifyChannelUI.
virtual void PromptSyncSetup(AppNotifyChannelUI::Delegate* delegate) OVERRIDE;
protected:
// A private class we use to put up an infobar - its lifetime is managed by
// |tab_contents_|, so we don't have one as an instance variable.
class InfoBar;
friend class AppNotifyChannelUIImpl::InfoBar;
// Called by our InfoBar when it's accepted or cancelled/closed.
void OnInfoBarResult(bool accepted);
// ProfileSyncServiceObserver.
virtual void OnStateChanged() OVERRIDE;
private:
void StartObservingSync();
void StopObservingSync();
Profile* profile_;
TabContents* tab_contents_;
std::string app_name_;
AppNotifyChannelUI::UIType ui_type_;
AppNotifyChannelUI::Delegate* delegate_;
// Have we registered ourself as a ProfileSyncServiceObserver?
bool observing_sync_;
// This is for working around a bug that ProfileSyncService calls
// ProfileSyncServiceObserver::OnStateChanged callback many times
// after ShowLoginDialog is called and before the wizard is
// actually visible to the user. So we record if the wizard was
// shown to user and then wait for wizard to get dismissed.
// See crbug.com/101842.
bool wizard_shown_to_user_;
DISALLOW_COPY_AND_ASSIGN(AppNotifyChannelUIImpl);
};
#endif // CHROME_BROWSER_EXTENSIONS_APP_NOTIFY_CHANNEL_UI_H_
|