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

Side by Side Diff: chrome/renderer/pepper/pepper_helper.h

Issue 10803050: Hook up the PPB_Flash_Print interface to new host system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: with deps Created 8 years, 4 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
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_RENDERER_PEPPER_PEPPER_HELPER_H_
6 #define CHROME_RENDERER_PEPPER_PEPPER_HELPER_H_
7
8 #include "base/compiler_specific.h"
9 #include "content/public/renderer/render_view_observer.h"
10
11 namespace chrome {
12
13 // This class listens for Pepper creation events from the RenderView and
14 // attaches the parts required for Chrome-specific plugin support.
15 class PepperHelper : public content::RenderViewObserver {
16 public:
17 explicit PepperHelper(content::RenderView* render_view);
18 virtual ~PepperHelper();
19
20 // RenderViewObserver.
21 virtual void DidCreatePepperPlugin(ppapi::host::PpapiHost* host) OVERRIDE;
22
23 private:
24 DISALLOW_COPY_AND_ASSIGN(PepperHelper);
25 };
26
27 } // namespace chrome
28
29 #endif // CHROME_RENDERER_PEPPER_PEPPER_HELPER_H_
OLDNEW
« no previous file with comments | « chrome/renderer/pepper/pepper_flash_renderer_message_filter.cc ('k') | chrome/renderer/pepper/pepper_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698