blob: 60960476aa3e8dcfa2356ffd0c1ec34b9454f6f2 (
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
|
// Copyright (c) 2011 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.
#include "chrome/browser/ui/webui/sync_promo_handler.h"
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sync/profile_sync_service.h"
#include "chrome/common/url_constants.h"
#include "content/browser/tab_contents/tab_contents.h"
SyncPromoHandler::SyncPromoHandler() {
}
SyncPromoHandler::~SyncPromoHandler() {
}
WebUIMessageHandler* SyncPromoHandler::Attach(WebUI* web_ui) {
DCHECK(web_ui);
return SyncSetupHandler::Attach(web_ui);
}
void SyncPromoHandler::RegisterMessages() {
web_ui_->RegisterMessageCallback("InitializeSyncPromo",
base::Bind(&SyncPromoHandler::HandleInitializeSyncPromo,
base::Unretained(this)));
web_ui_->RegisterMessageCallback("CloseSyncPromo",
base::Bind(&SyncPromoHandler::HandleCloseSyncPromo,
base::Unretained(this)));
SyncSetupHandler::RegisterMessages();
}
void SyncPromoHandler::ShowSetupUI() {
ProfileSyncService* service =
Profile::FromWebUI(web_ui_)->GetProfileSyncService();
service->get_wizard().Step(SyncSetupWizard::GetLoginState());
}
void SyncPromoHandler::HandleInitializeSyncPromo(const base::ListValue* args) {
OpenSyncSetup();
}
void SyncPromoHandler::HandleCloseSyncPromo(const base::ListValue* args) {
CloseSyncSetup();
web_ui_->tab_contents()->OpenURL(GURL(chrome::kChromeUINewTabURL),
GURL(), CURRENT_TAB,
PageTransition::LINK);
}
|