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

Side by Side Diff: chrome/renderer/pepper/pepper_flash_drm_renderer_host.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_PEPPER_FLASH_DRM_RENDERER_HOST_H_ 5 #ifndef CHROME_RENDERER_PEPPER_PEPPER_FLASH_DRM_RENDERER_HOST_H_
6 #define CHROME_RENDERER_PEPPER_PEPPER_FLASH_DRM_RENDERER_HOST_H_ 6 #define CHROME_RENDERER_PEPPER_PEPPER_FLASH_DRM_RENDERER_HOST_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 "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
(...skipping 11 matching lines...) Expand all
22 // browser. After that, get rid of this class altogether. 22 // browser. After that, get rid of this class altogether.
23 class PepperFlashDRMRendererHost : public ppapi::host::ResourceHost { 23 class PepperFlashDRMRendererHost : public ppapi::host::ResourceHost {
24 public: 24 public:
25 PepperFlashDRMRendererHost(content::RendererPpapiHost* host, 25 PepperFlashDRMRendererHost(content::RendererPpapiHost* host,
26 PP_Instance instance, 26 PP_Instance instance,
27 PP_Resource resource); 27 PP_Resource resource);
28 virtual ~PepperFlashDRMRendererHost(); 28 virtual ~PepperFlashDRMRendererHost();
29 29
30 virtual int32_t OnResourceMessageReceived( 30 virtual int32_t OnResourceMessageReceived(
31 const IPC::Message& msg, 31 const IPC::Message& msg,
32 ppapi::host::HostMessageContext* context) OVERRIDE; 32 ppapi::host::HostMessageContext* context) override;
33 33
34 private: 34 private:
35 int32_t OnGetVoucherFile(ppapi::host::HostMessageContext* context); 35 int32_t OnGetVoucherFile(ppapi::host::HostMessageContext* context);
36 36
37 void DidCreateFileRefHosts( 37 void DidCreateFileRefHosts(
38 const ppapi::host::ReplyMessageContext& reply_context, 38 const ppapi::host::ReplyMessageContext& reply_context,
39 const base::FilePath& external_path, 39 const base::FilePath& external_path,
40 int renderer_pending_host_id, 40 int renderer_pending_host_id,
41 const std::vector<int>& browser_pending_host_ids); 41 const std::vector<int>& browser_pending_host_ids);
42 42
43 // Non-owning pointer. 43 // Non-owning pointer.
44 content::RendererPpapiHost* renderer_ppapi_host_; 44 content::RendererPpapiHost* renderer_ppapi_host_;
45 45
46 base::WeakPtrFactory<PepperFlashDRMRendererHost> weak_factory_; 46 base::WeakPtrFactory<PepperFlashDRMRendererHost> weak_factory_;
47 47
48 DISALLOW_COPY_AND_ASSIGN(PepperFlashDRMRendererHost); 48 DISALLOW_COPY_AND_ASSIGN(PepperFlashDRMRendererHost);
49 }; 49 };
50 50
51 #endif // CHROME_RENDERER_PEPPER_PEPPER_FLASH_DRM_RENDERER_HOST_H_ 51 #endif // CHROME_RENDERER_PEPPER_PEPPER_FLASH_DRM_RENDERER_HOST_H_
OLDNEW
« no previous file with comments | « chrome/renderer/pepper/chrome_renderer_pepper_host_factory.h ('k') | chrome/renderer/pepper/pepper_flash_font_file_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698