blob: 7c975cc3d4eb724432f09693f7d59fbde48a3066 (
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
|
// 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_REMOTING_FIREWALL_TRAVERSAL_TAB_HELPER_H_
#define CHROME_BROWSER_REMOTING_FIREWALL_TRAVERSAL_TAB_HELPER_H_
#pragma once
#include "chrome/browser/prefs/pref_change_registrar.h"
#include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
#include "content/common/notification_observer.h"
#include "ipc/ipc_channel.h"
class Profile;
// Per-tab class to manage the firewall traversal policies for
// the remoting plugin.
// TODO(dmaclach): Replace this with a more generic mechanism for
// plugins to access preferences. http://crbug.com/90543
class FirewallTraversalTabHelper : public NotificationObserver,
public TabContentsObserver {
public:
explicit FirewallTraversalTabHelper(TabContents* tab_contents);
virtual ~FirewallTraversalTabHelper();
static void RegisterUserPrefs(PrefService* prefs);
// NotificationObserver overrides:
virtual void Observe(int type,
const NotificationSource& source,
const NotificationDetails& details) OVERRIDE;
// IPC::Channel::Listener overrides:
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
private:
Profile* profile() const { return tab_contents()->profile(); }
void UpdateFirewallTraversalState();
// Registers and unregisters us for notifications.
PrefChangeRegistrar pref_change_registrar_;
DISALLOW_COPY_AND_ASSIGN(FirewallTraversalTabHelper);
};
#endif // CHROME_BROWSER_REMOTING_FIREWALL_TRAVERSAL_TAB_HELPER_H_
|