Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 |
| OLD | NEW |