blob: 2612e5293137445c84d5fb9c3a789ccc89a0e170 (
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
|
// 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_PLUGIN_OBSERVER_H_
#define CHROME_BROWSER_PLUGIN_OBSERVER_H_
#pragma once
#include "base/memory/weak_ptr.h"
#include "content/browser/tab_contents/tab_contents_observer.h"
class GURL;
class InfoBarDelegate;
class PluginInstaller;
class TabContentsWrapper;
class PluginObserver : public TabContentsObserver {
public:
explicit PluginObserver(TabContentsWrapper* tab_contents);
virtual ~PluginObserver();
// IPC::Channel::Listener implementation.
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
private:
void OnBlockedOutdatedPlugin(const string16& name, const GURL& update_url);
void OnFindMissingPlugin(int placeholder_id, const std::string& mime_type);
void FoundMissingPlugin(int placeholder_id,
const std::string& mime_type,
PluginInstaller* installer);
void DidNotFindMissingPlugin(int placeholder_id,
const std::string& mime_type);
void InstallMissingPlugin(PluginInstaller* installer);
base::WeakPtrFactory<PluginObserver> weak_ptr_factory_;
TabContentsWrapper* tab_contents_;
DISALLOW_COPY_AND_ASSIGN(PluginObserver);
};
#endif // CHROME_BROWSER_PLUGIN_OBSERVER_H_
|