summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/pepper/pepper_helper.h
blob: 5f810b8afa99c35d1f8751caebd02e684e78c864 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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(content::RendererPpapiHost* host) OVERRIDE;

 private:
  DISALLOW_COPY_AND_ASSIGN(PepperHelper);
};

}  // namespace chrome

#endif  // CHROME_RENDERER_PEPPER_PEPPER_HELPER_H_