blob: 2e23e6b97167d5467bdf63bc3f35610f6d2f4a39 (
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 (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.
#ifndef CHROME_BROWSER_WEBUI_FOREIGN_SESSION_HANDLER_H_
#define CHROME_BROWSER_WEBUI_FOREIGN_SESSION_HANDLER_H_
#pragma once
#include <vector>
#include "chrome/browser/sessions/session_service.h"
#include "chrome/browser/sync/glue/session_model_associator.h"
#include "chrome/common/notification_observer.h"
#include "chrome/common/notification_registrar.h"
#include "content/browser/webui/web_ui.h"
namespace browser_sync {
class ForeignSessionHandler : public WebUIMessageHandler,
public NotificationObserver {
public:
// WebUIMessageHandler implementation.
virtual void RegisterMessages();
ForeignSessionHandler();
virtual ~ForeignSessionHandler() {}
private:
// Used to register ForeignSessionHandler for notifications.
void Init();
// Determines how ForeignSessionHandler will interact with the new tab page.
virtual void Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details);
// Returns a pointer to the current session model associator or NULL.
SessionModelAssociator* GetModelAssociator();
// Determines which session is to be opened, and then calls
// OpenForeignSession, to begin the process of opening a new browser window.
// This is a javascript callback handler.
void HandleOpenForeignSession(const ListValue* args);
// Determines whether foreign sessions should be obtained from the sync model.
// This is a javascript callback handler, and it is also called when the sync
// model has changed and the new tab page needs to reflect the changes.
void HandleGetForeignSessions(const ListValue* args);
// Helper methods to create JSON compatible objects from Session objects.
bool SessionTabToValue(const SessionTab& tab, DictionaryValue* dictionary);
bool SessionWindowToValue(const SessionWindow& window,
DictionaryValue* dictionary);
// The Registrar used to register ForeignSessionHandler for notifications.
NotificationRegistrar registrar_;
DISALLOW_COPY_AND_ASSIGN(ForeignSessionHandler);
};
} // namespace browser_sync
#endif // CHROME_BROWSER_WEBUI_FOREIGN_SESSION_HANDLER_H_
|