Delete chrome.mediaGalleriesPrivate because the functionality unique to it has since...
[chromium-blink-merge.git] / chrome / renderer / pepper / pepper_helper.h
blobb3e850b2481b0ad68143fbfc780e6076f3d80324
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.
5 #ifndef CHROME_RENDERER_PEPPER_PEPPER_HELPER_H_
6 #define CHROME_RENDERER_PEPPER_PEPPER_HELPER_H_
8 #include "base/compiler_specific.h"
9 #include "content/public/renderer/render_frame_observer.h"
11 // This class listens for Pepper creation events from the RenderFrame and
12 // attaches the parts required for Chrome-specific plugin support.
13 class PepperHelper : public content::RenderFrameObserver {
14 public:
15 explicit PepperHelper(content::RenderFrame* render_frame);
16 ~PepperHelper() override;
18 // RenderFrameObserver.
19 void DidCreatePepperPlugin(content::RendererPpapiHost* host) override;
21 private:
22 DISALLOW_COPY_AND_ASSIGN(PepperHelper);
25 #endif // CHROME_RENDERER_PEPPER_PEPPER_HELPER_H_