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

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

Issue 630603003: Replacing the OVERRIDE with override in chrome/renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch Created 6 years, 2 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_RENDERER_PEPPER_CHROME_RENDERER_PEPPER_HOST_FACTORY_H_ 5 #ifndef CHROME_RENDERER_PEPPER_CHROME_RENDERER_PEPPER_HOST_FACTORY_H_
6 #define CHROME_RENDERER_PEPPER_CHROME_RENDERER_PEPPER_HOST_FACTORY_H_ 6 #define CHROME_RENDERER_PEPPER_CHROME_RENDERER_PEPPER_HOST_FACTORY_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "ppapi/host/host_factory.h" 10 #include "ppapi/host/host_factory.h"
11 11
12 namespace content { 12 namespace content {
13 class RendererPpapiHost; 13 class RendererPpapiHost;
14 } 14 }
15 15
16 class ChromeRendererPepperHostFactory : public ppapi::host::HostFactory { 16 class ChromeRendererPepperHostFactory : public ppapi::host::HostFactory {
17 public: 17 public:
18 explicit ChromeRendererPepperHostFactory(content::RendererPpapiHost* host); 18 explicit ChromeRendererPepperHostFactory(content::RendererPpapiHost* host);
19 virtual ~ChromeRendererPepperHostFactory(); 19 virtual ~ChromeRendererPepperHostFactory();
20 20
21 // HostFactory. 21 // HostFactory.
22 virtual scoped_ptr<ppapi::host::ResourceHost> CreateResourceHost( 22 virtual scoped_ptr<ppapi::host::ResourceHost> CreateResourceHost(
23 ppapi::host::PpapiHost* host, 23 ppapi::host::PpapiHost* host,
24 const ppapi::proxy::ResourceMessageCallParams& params, 24 const ppapi::proxy::ResourceMessageCallParams& params,
25 PP_Instance instance, 25 PP_Instance instance,
26 const IPC::Message& message) OVERRIDE; 26 const IPC::Message& message) override;
27 27
28 private: 28 private:
29 // Not owned by this object. 29 // Not owned by this object.
30 content::RendererPpapiHost* host_; 30 content::RendererPpapiHost* host_;
31 31
32 DISALLOW_COPY_AND_ASSIGN(ChromeRendererPepperHostFactory); 32 DISALLOW_COPY_AND_ASSIGN(ChromeRendererPepperHostFactory);
33 }; 33 };
34 34
35 #endif // CHROME_RENDERER_PEPPER_CHROME_RENDERER_PEPPER_HOST_FACTORY_H_ 35 #endif // CHROME_RENDERER_PEPPER_CHROME_RENDERER_PEPPER_HOST_FACTORY_H_
OLDNEW
« no previous file with comments | « chrome/renderer/pepper/chrome_pdf_print_client.h ('k') | chrome/renderer/pepper/pepper_flash_drm_renderer_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698