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

Side by Side Diff: chrome/renderer/pepper/chrome_renderer_pepper_host_factory.cc

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: 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 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 #include "chrome/renderer/pepper/chrome_renderer_pepper_host_factory.h"
6
7 #include "ppapi/host/resource_host.h"
8 #include "ppapi/proxy/ppapi_messages.h"
9
10 using ppapi::host::ResourceHost;
11
12 namespace chrome {
13
14 ChromeRendererPepperHostFactory::ChromeRendererPepperHostFactory(){
dmichael (off chromium) 2012/07/25 16:57:27 nit: space between ) and {
15 }
16
17 ChromeRendererPepperHostFactory::~ChromeRendererPepperHostFactory() {
18 }
19
20 scoped_ptr<ResourceHost>
21 ChromeRendererPepperHostFactory::CreateResourceHost(
22 ppapi::host::PpapiHost* host,
23 const ppapi::proxy::ResourceMessageCallParams& params,
24 PP_Instance instance,
25 const IPC::Message& message) {
26 // There are no Chrome-side implementations of resources.
27 return scoped_ptr<ResourceHost>();
28 }
29
30 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698