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

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

Issue 173363002: Move mediastream module to oilpan transition types (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: toRefPtrWillBeMemberNativeArray Created 6 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 // The component() accessor give the information 88 // The component() accessor give the information
89 // required to look up a MediaStreamTrack implementation. 89 // required to look up a MediaStreamTrack implementation.
90 // It is only useful to call it when hasSelector() returns true. 90 // It is only useful to call it when hasSelector() returns true.
91 BLINK_PLATFORM_EXPORT const WebMediaStreamTrack component() const; 91 BLINK_PLATFORM_EXPORT const WebMediaStreamTrack component() const;
92 92
93 BLINK_PLATFORM_EXPORT void requestSucceeded(const WebRTCStatsResponse&) cons t; 93 BLINK_PLATFORM_EXPORT void requestSucceeded(const WebRTCStatsResponse&) cons t;
94 94
95 BLINK_PLATFORM_EXPORT WebRTCStatsResponse createResponse() const; 95 BLINK_PLATFORM_EXPORT WebRTCStatsResponse createResponse() const;
96 96
97 #if INSIDE_BLINK 97 #if INSIDE_BLINK
98 BLINK_PLATFORM_EXPORT WebRTCStatsRequest(const WTF::PassRefPtr<WebCore::RTCS tatsRequest>&); 98 BLINK_PLATFORM_EXPORT WebRTCStatsRequest(const PassRefPtr<WebCore::RTCStatsR equest>&);
sof 2014/04/07 14:22:16 Keep this as-is if RTCStatsRequest won't derive fr
haraken 2014/04/08 04:42:35 I wonder why this complies without the WTF:: names
keishi 2014/04/11 20:03:06 Done.
99 #endif 99 #endif
100 100
101 private: 101 private:
102 WebPrivatePtr<WebCore::RTCStatsRequest> m_private; 102 WebPrivatePtr<WebCore::RTCStatsRequest> m_private;
103 }; 103 };
104 104
105 } // namespace blink 105 } // namespace blink
106 106
107 #endif // WebRTCStatsRequest_h 107 #endif // WebRTCStatsRequest_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698