~rpadovani/oxide/type-info

« back to all changes in this revision

Viewing changes to shared/renderer/pepper/oxide_pepper_render_frame_observer.cc

  • Committer: Riccardo Padovani
  • Date: 2015-10-19 07:56:29 UTC
  • mfrom: (1088.1.131 oxide)
  • Revision ID: riccardo@rpadovani.com-20151019075629-z0mlhwlb9xflkovw
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// vim:expandtab:shiftwidth=2:tabstop=2:
 
2
// Copyright (C) 2014 Canonical Ltd.
 
3
 
 
4
// This library is free software; you can redistribute it and/or
 
5
// modify it under the terms of the GNU Lesser General Public
 
6
// License as published by the Free Software Foundation; either
 
7
// version 2.1 of the License, or (at your option) any later version.
 
8
 
 
9
// This library is distributed in the hope that it will be useful,
 
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
// Lesser General Public License for more details.
 
13
 
 
14
// You should have received a copy of the GNU Lesser General Public
 
15
// License along with this library; if not, write to the Free Software
 
16
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
17
 
 
18
#include "content/public/renderer/renderer_ppapi_host.h"
 
19
#include "ppapi/host/ppapi_host.h"
 
20
 
 
21
#include "oxide_pepper_shared_memory_message_filter.h"
 
22
#include "oxide_pepper_render_frame_observer.h"
 
23
#include "oxide_pepper_renderer_host_factory.h"
 
24
 
 
25
namespace oxide {
 
26
 
 
27
PepperRenderFrameObserver::PepperRenderFrameObserver(
 
28
    content::RenderFrame* render_frame)
 
29
    : RenderFrameObserver(render_frame) {}
 
30
 
 
31
PepperRenderFrameObserver::~PepperRenderFrameObserver() {}
 
32
 
 
33
void PepperRenderFrameObserver::DidCreatePepperPlugin(content::RendererPpapiHost* host) {
 
34
 
 
35
  host->GetPpapiHost()->AddHostFactoryFilter(
 
36
      scoped_ptr<ppapi::host::HostFactory>(
 
37
          new PepperRendererHostFactory(host)));
 
38
 
 
39
  host->GetPpapiHost()->AddInstanceMessageFilter(
 
40
      scoped_ptr<ppapi::host::InstanceMessageFilter>(
 
41
          new ::PepperSharedMemoryMessageFilter(host)));
 
42
 
 
43
}
 
44
 
 
45
} // namespace oxide