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

Side by Side Diff: ppapi/proxy/video_destination_resource.h

Issue 630883002: replace OVERRIDE and FINAL with override and final in ppapi/ (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
« no previous file with comments | « ppapi/proxy/video_decoder_resource.h ('k') | ppapi/proxy/video_frame_resource.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 PPAPI_PROXY_VIDEO_DESTINATION_RESOURCE_H_ 5 #ifndef PPAPI_PROXY_VIDEO_DESTINATION_RESOURCE_H_
6 #define PPAPI_PROXY_VIDEO_DESTINATION_RESOURCE_H_ 6 #define PPAPI_PROXY_VIDEO_DESTINATION_RESOURCE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "ppapi/c/pp_var.h" 10 #include "ppapi/c/pp_var.h"
(...skipping 13 matching lines...) Expand all
24 class PPAPI_PROXY_EXPORT VideoDestinationResource 24 class PPAPI_PROXY_EXPORT VideoDestinationResource
25 : public PluginResource, 25 : public PluginResource,
26 public thunk::PPB_VideoDestination_Private_API { 26 public thunk::PPB_VideoDestination_Private_API {
27 public: 27 public:
28 VideoDestinationResource(Connection connection, 28 VideoDestinationResource(Connection connection,
29 PP_Instance instance); 29 PP_Instance instance);
30 virtual ~VideoDestinationResource(); 30 virtual ~VideoDestinationResource();
31 31
32 // Resource overrides. 32 // Resource overrides.
33 virtual thunk::PPB_VideoDestination_Private_API* 33 virtual thunk::PPB_VideoDestination_Private_API*
34 AsPPB_VideoDestination_Private_API() OVERRIDE; 34 AsPPB_VideoDestination_Private_API() override;
35 35
36 // PPB_VideoDestination_Private_API implementation. 36 // PPB_VideoDestination_Private_API implementation.
37 virtual int32_t Open( 37 virtual int32_t Open(
38 const PP_Var& stream_url, 38 const PP_Var& stream_url,
39 scoped_refptr<TrackedCallback> callback) OVERRIDE; 39 scoped_refptr<TrackedCallback> callback) override;
40 virtual int32_t PutFrame(const PP_VideoFrame_Private& frame) OVERRIDE; 40 virtual int32_t PutFrame(const PP_VideoFrame_Private& frame) override;
41 virtual void Close() OVERRIDE; 41 virtual void Close() override;
42 42
43 private: 43 private:
44 void OnPluginMsgOpenComplete( 44 void OnPluginMsgOpenComplete(
45 const ResourceMessageReplyParams& params); 45 const ResourceMessageReplyParams& params);
46 46
47 scoped_refptr<TrackedCallback> open_callback_; 47 scoped_refptr<TrackedCallback> open_callback_;
48 bool is_open_; 48 bool is_open_;
49 49
50 DISALLOW_COPY_AND_ASSIGN(VideoDestinationResource); 50 DISALLOW_COPY_AND_ASSIGN(VideoDestinationResource);
51 }; 51 };
52 52
53 } // namespace proxy 53 } // namespace proxy
54 } // namespace ppapi 54 } // namespace ppapi
55 55
56 #endif // PPAPI_PROXY_VIDEO_DESTINATION_RESOURCE_H_ 56 #endif // PPAPI_PROXY_VIDEO_DESTINATION_RESOURCE_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/video_decoder_resource.h ('k') | ppapi/proxy/video_frame_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698