Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Side by Side Diff: chrome/browser/plugin_observer.h

Issue 7812020: Moved the following IPC messages used by the chrome NPAPI plugin installer out of content (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 #include "ui/gfx/native_widget_types.h"
jam 2011/08/31 20:23:57 nit: is this needed?
ananta 2011/08/31 20:44:23 Done.
10 11
11 class FilePath; 12 class FilePath;
12 class GURL; 13 class GURL;
13 class InfoBarDelegate; 14 class InfoBarDelegate;
14 class PluginInstallerInfoBarDelegate; 15 class PluginInstallerInfoBarDelegate;
15 class TabContentsWrapper; 16 class TabContentsWrapper;
16 17
17 class PluginObserver : public TabContentsObserver { 18 class PluginObserver : public TabContentsObserver {
18 public: 19 public:
19 explicit PluginObserver(TabContentsWrapper* tab_contents); 20 explicit PluginObserver(TabContentsWrapper* tab_contents);
20 virtual ~PluginObserver(); 21 virtual ~PluginObserver();
21 22
22 // IPC::Channel::Listener implementation. 23 // IPC::Channel::Listener implementation.
23 virtual bool OnMessageReceived(const IPC::Message& message); 24 virtual bool OnMessageReceived(const IPC::Message& message);
24 25
25 private: 26 private:
26 // Returns the PluginInstallerInfoBarDelegate, creating it if necessary.
27 PluginInstallerInfoBarDelegate* GetPluginInstaller();
28
29 void OnMissingPluginStatus(int status);
30 void OnCrashedPlugin(const FilePath& plugin_path); 27 void OnCrashedPlugin(const FilePath& plugin_path);
31 void OnBlockedOutdatedPlugin(const string16& name, const GURL& update_url); 28 void OnBlockedOutdatedPlugin(const string16& name, const GURL& update_url);
32 29
33 TabContentsWrapper* tab_contents_; 30 TabContentsWrapper* tab_contents_;
34 scoped_ptr<InfoBarDelegate> plugin_installer_; // Lazily created. 31 scoped_ptr<InfoBarDelegate> plugin_installer_; // Lazily created.
35 32
36 DISALLOW_COPY_AND_ASSIGN(PluginObserver); 33 DISALLOW_COPY_AND_ASSIGN(PluginObserver);
37 }; 34 };
38 35
39 #endif // CHROME_BROWSER_PLUGIN_OBSERVER_H_ 36 #endif // CHROME_BROWSER_PLUGIN_OBSERVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698