blob: 44f7b0344b22bb04cdc180318128f4f8b870c327 [file] [log] [blame]
// 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_PLUGIN_OBSERVER_H_
#define CHROME_BROWSER_PLUGIN_OBSERVER_H_
#pragma once
#include "base/memory/weak_ptr.h"
#include "content/public/browser/web_contents_observer.h"
#if defined(ENABLE_PLUGIN_INSTALLATION)
#include <map>
#endif
class GURL;
class InfoBarDelegate;
class PluginInstaller;
class TabContentsWrapper;
#if defined(ENABLE_PLUGIN_INSTALLATION)
class PluginInstaller;
class PluginPlaceholderHost;
#endif
class PluginObserver : public content::WebContentsObserver {
public:
explicit PluginObserver(TabContentsWrapper* tab_contents);
virtual ~PluginObserver();
// content::WebContentsObserver implementation.
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
#if defined(ENABLE_PLUGIN_INSTALLATION)
void InstallMissingPlugin(PluginInstaller* installer);
#endif
TabContentsWrapper* tab_contents_wrapper() { return tab_contents_; }
private:
class PluginPlaceholderHost;
void OnBlockedUnauthorizedPlugin(const string16& name);
void OnBlockedOutdatedPlugin(int placeholder_id,
const std::string& identifier);
#if defined(ENABLE_PLUGIN_INSTALLATION)
void OnFindMissingPlugin(int placeholder_id, const std::string& mime_type);
void FoundMissingPlugin(int placeholder_id,
const std::string& mime_type,
PluginInstaller* installer);
void FoundPluginToUpdate(int placeholder_id,
PluginInstaller* installer);
void OnRemovePluginPlaceholderHost(int placeholder_id);
#endif
void OnOpenAboutPlugins();
base::WeakPtrFactory<PluginObserver> weak_ptr_factory_;
TabContentsWrapper* tab_contents_;
#if defined(ENABLE_PLUGIN_INSTALLATION)
// Stores all PluginPlaceholderHosts, keyed by their routing ID.
std::map<int, PluginPlaceholderHost*> plugin_placeholders_;
#endif
DISALLOW_COPY_AND_ASSIGN(PluginObserver);
};
#endif // CHROME_BROWSER_PLUGIN_OBSERVER_H_