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

Side by Side Diff: public/platform/WebMediaStreamTrackSourcesRequest.h

Issue 173363002: Move mediastream module to oilpan transition types (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/web/WebUserMediaRequest.cpp ('k') | public/platform/WebRTCStatsResponse.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 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 BLINK_PLATFORM_EXPORT void requestSucceeded(const WebVector<WebSourceInfo>&) const; 65 BLINK_PLATFORM_EXPORT void requestSucceeded(const WebVector<WebSourceInfo>&) const;
66 66
67 // Extra data associated with this object. 67 // Extra data associated with this object.
68 // If non-null, the extra data pointer will be deleted when the object is de stroyed. 68 // If non-null, the extra data pointer will be deleted when the object is de stroyed.
69 // Setting the extra data pointer will cause any existing non-null 69 // Setting the extra data pointer will cause any existing non-null
70 // extra data pointer to be deleted. 70 // extra data pointer to be deleted.
71 BLINK_PLATFORM_EXPORT ExtraData* extraData() const; 71 BLINK_PLATFORM_EXPORT ExtraData* extraData() const;
72 BLINK_PLATFORM_EXPORT void setExtraData(ExtraData*); 72 BLINK_PLATFORM_EXPORT void setExtraData(ExtraData*);
73 73
74 #if INSIDE_BLINK 74 #if INSIDE_BLINK
75 BLINK_PLATFORM_EXPORT WebMediaStreamTrackSourcesRequest(const WTF::PassRefPt r<WebCore::MediaStreamTrackSourcesRequest>&); 75 BLINK_PLATFORM_EXPORT WebMediaStreamTrackSourcesRequest(const PassRefPtrWill BeRawPtr<WebCore::MediaStreamTrackSourcesRequest>&);
76 #endif 76 #endif
77 77
78 private: 78 private:
79 WebPrivatePtr<WebCore::MediaStreamTrackSourcesRequest> m_private; 79 WebPrivatePtr<WebCore::MediaStreamTrackSourcesRequest> m_private;
80 }; 80 };
81 81
82 } // namespace blink 82 } // namespace blink
83 83
84 #endif // WebMediaStreamTrackSourcesRequest_h 84 #endif // WebMediaStreamTrackSourcesRequest_h
OLDNEW
« no previous file with comments | « Source/web/WebUserMediaRequest.cpp ('k') | public/platform/WebRTCStatsResponse.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698