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

Unified 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, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/renderer/pepper/pepper_helper.h
diff --git a/chrome/renderer/pepper/pepper_helper.h b/chrome/renderer/pepper/pepper_helper.h
new file mode 100644
index 0000000000000000000000000000000000000000..969a80eecfb8918c4e8140a4e27c4229e16024ed
--- /dev/null
+++ b/chrome/renderer/pepper/pepper_helper.h
@@ -0,0 +1,29 @@
+// 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_RENDERER_PEPPER_PEPPER_HELPER_H_
+#define CHROME_RENDERER_PEPPER_PEPPER_HELPER_H_
+
+#include "base/compiler_specific.h"
+#include "content/public/renderer/render_view_observer.h"
+
+namespace chrome {
+
+// This class listens for Pepper creation events from the RenderView and
+// attaches the parts required for Chrome-specific plugin support.
+class PepperHelper : public content::RenderViewObserver {
+ public:
+ explicit PepperHelper(content::RenderView* render_view);
+ virtual ~PepperHelper();
+
+ // RenderViewObserver.
+ virtual void DidCreatePepperPlugin(ppapi::host::PpapiHost* host) OVERRIDE;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(PepperHelper);
+};
+
+} // namespace chrome
+
+#endif // CHROME_RENDERER_PEPPER_PEPPER_HELPER_H_
« 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