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

Unified Diff: ppapi/proxy/ppb_video_capture_proxy.cc

Issue 7587011: Remove the old type system for proxied resources. These were no longer being used. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: New one Created 9 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/proxy/ppb_pdf_proxy.cc ('k') | ppapi/thunk/ppb_pdf_api.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_video_capture_proxy.cc
diff --git a/ppapi/proxy/ppb_video_capture_proxy.cc b/ppapi/proxy/ppb_video_capture_proxy.cc
index e9573158938f4a4e15b5fec0fa398d338f48c988..7c5c8a0a66a318c68ed77f014274353772c19349 100644
--- a/ppapi/proxy/ppb_video_capture_proxy.cc
+++ b/ppapi/proxy/ppb_video_capture_proxy.cc
@@ -149,9 +149,6 @@ class VideoCapture : public ppapi::thunk::PPB_VideoCapture_API,
VideoCapture(const HostResource& resource);
virtual ~VideoCapture();
- // Resource overrides.
- virtual VideoCapture* AsVideoCapture() OVERRIDE;
-
// ResourceObjectBase overrides.
virtual ppapi::thunk::PPB_VideoCapture_API* AsPPB_VideoCapture_API() OVERRIDE;
@@ -261,10 +258,6 @@ VideoCapture::VideoCapture(const HostResource& resource)
VideoCapture::~VideoCapture() {
}
-VideoCapture* VideoCapture::AsVideoCapture() {
- return this;
-}
-
ppapi::thunk::PPB_VideoCapture_API* VideoCapture::AsPPB_VideoCapture_API() {
return this;
}
« no previous file with comments | « ppapi/proxy/ppb_pdf_proxy.cc ('k') | ppapi/thunk/ppb_pdf_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698