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

Side by Side Diff: content/renderer/pepper/pepper_video_capture_host.h

Issue 633303002: Replace FINAL and OVERRIDE with their C++11 counterparts in content/renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 CONTENT_RENDERER_PEPPER_PEPPER_VIDEO_CAPTURE_HOST_H_ 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_VIDEO_CAPTURE_HOST_H_
6 #define CONTENT_RENDERER_PEPPER_PEPPER_VIDEO_CAPTURE_HOST_H_ 6 #define CONTENT_RENDERER_PEPPER_PEPPER_VIDEO_CAPTURE_HOST_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 19 matching lines...) Expand all
30 PepperVideoCaptureHost(RendererPpapiHostImpl* host, 30 PepperVideoCaptureHost(RendererPpapiHostImpl* host,
31 PP_Instance instance, 31 PP_Instance instance,
32 PP_Resource resource); 32 PP_Resource resource);
33 33
34 virtual ~PepperVideoCaptureHost(); 34 virtual ~PepperVideoCaptureHost();
35 35
36 bool Init(); 36 bool Init();
37 37
38 virtual int32_t OnResourceMessageReceived( 38 virtual int32_t OnResourceMessageReceived(
39 const IPC::Message& msg, 39 const IPC::Message& msg,
40 ppapi::host::HostMessageContext* context) OVERRIDE; 40 ppapi::host::HostMessageContext* context) override;
41 41
42 // These methods are called by PepperPlatformVideoCapture only. 42 // These methods are called by PepperPlatformVideoCapture only.
43 43
44 // Called when video capture is initialized. We can start 44 // Called when video capture is initialized. We can start
45 // video capture if |succeeded| is true. 45 // video capture if |succeeded| is true.
46 void OnInitialized(bool succeeded); 46 void OnInitialized(bool succeeded);
47 47
48 // Called when video capture has started successfully. 48 // Called when video capture has started successfully.
49 void OnStarted(); 49 void OnStarted();
50 50
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 ppapi::host::ReplyMessageContext open_reply_context_; 112 ppapi::host::ReplyMessageContext open_reply_context_;
113 113
114 PepperDeviceEnumerationHostHelper enumeration_helper_; 114 PepperDeviceEnumerationHostHelper enumeration_helper_;
115 115
116 DISALLOW_COPY_AND_ASSIGN(PepperVideoCaptureHost); 116 DISALLOW_COPY_AND_ASSIGN(PepperVideoCaptureHost);
117 }; 117 };
118 118
119 } // namespace content 119 } // namespace content
120 120
121 #endif // CONTENT_RENDERER_PEPPER_PEPPER_VIDEO_CAPTURE_HOST_H_ 121 #endif // CONTENT_RENDERER_PEPPER_PEPPER_VIDEO_CAPTURE_HOST_H_
OLDNEW
« no previous file with comments | « content/renderer/pepper/pepper_url_request_unittest.cc ('k') | content/renderer/pepper/pepper_video_decoder_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698