| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_PLUGIN_OBSERVER_H_ | 5 #ifndef CHROME_BROWSER_PLUGIN_OBSERVER_H_ |
| 6 #define CHROME_BROWSER_PLUGIN_OBSERVER_H_ | 6 #define CHROME_BROWSER_PLUGIN_OBSERVER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "content/browser/tab_contents/tab_contents_observer.h" | 9 #include "content/browser/tab_contents/tab_contents_observer.h" |
| 10 | 10 |
| 11 class GURL; | 11 class GURL; |
| 12 class InfoBarDelegate; | 12 class InfoBarDelegate; |
| 13 class TabContentsWrapper; | 13 class TabContentsWrapper; |
| 14 | 14 |
| 15 class PluginObserver : public TabContentsObserver { | 15 class PluginObserver : public TabContentsObserver { |
| 16 public: | 16 public: |
| 17 explicit PluginObserver(TabContentsWrapper* tab_contents); | 17 explicit PluginObserver(TabContentsWrapper* tab_contents); |
| 18 virtual ~PluginObserver(); | 18 virtual ~PluginObserver(); |
| 19 | 19 |
| 20 // IPC::Channel::Listener implementation. | 20 // IPC::Channel::Listener implementation. |
| 21 virtual bool OnMessageReceived(const IPC::Message& message); | 21 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; |
| 22 | 22 |
| 23 private: | 23 private: |
| 24 void OnBlockedOutdatedPlugin(const string16& name, const GURL& update_url); | 24 void OnBlockedOutdatedPlugin(const string16& name, const GURL& update_url); |
| 25 | 25 |
| 26 TabContentsWrapper* tab_contents_; | 26 TabContentsWrapper* tab_contents_; |
| 27 scoped_ptr<InfoBarDelegate> plugin_installer_; // Lazily created. | 27 scoped_ptr<InfoBarDelegate> plugin_installer_; // Lazily created. |
| 28 | 28 |
| 29 DISALLOW_COPY_AND_ASSIGN(PluginObserver); | 29 DISALLOW_COPY_AND_ASSIGN(PluginObserver); |
| 30 }; | 30 }; |
| 31 | 31 |
| 32 #endif // CHROME_BROWSER_PLUGIN_OBSERVER_H_ | 32 #endif // CHROME_BROWSER_PLUGIN_OBSERVER_H_ |
| OLD | NEW |