193ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)/*
293ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles) * Copyright (C) 2012 Google Inc. All rights reserved.
35c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
45c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Redistribution and use in source and binary forms, with or without
55c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * modification, are permitted provided that the following conditions
65c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * are met:
75c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 1.  Redistributions of source code must retain the above copyright
85c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     notice, this list of conditions and the following disclaimer.
95c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 2.  Redistributions in binary form must reproduce the above copyright
105c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     notice, this list of conditions and the following disclaimer in the
115c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     documentation and/or other materials provided with the distribution.
125c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
135c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
145c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
155c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
165c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
175c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
185c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
195c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
205c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
215c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
225c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
235c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) */
245c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
2593ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)#ifndef WebRTCStatsResponse_h
2693ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)#define WebRTCStatsResponse_h
2793ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)
2893ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)#include "WebCommon.h"
2993ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)#include "WebPrivatePtr.h"
3093ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)#include "WebString.h"
3193ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)
32c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)namespace blink {
335c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
34e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)class RTCStatsResponseBase;
355c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
3693ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)class WebRTCStatsResponse {
375c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)public:
3893ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WebRTCStatsResponse(const WebRTCStatsResponse& other) { assign(other); }
3993ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WebRTCStatsResponse() { }
4093ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    ~WebRTCStatsResponse() { reset(); }
415c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
4293ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    WebRTCStatsResponse& operator=(const WebRTCStatsResponse& other)
4393ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    {
4493ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)        assign(other);
4593ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)        return *this;
4693ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)    }
475c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
4851b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)    BLINK_PLATFORM_EXPORT void assign(const WebRTCStatsResponse&);
4993ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)
5051b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)    BLINK_PLATFORM_EXPORT void reset();
515c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
52197021e6b966cfb06891637935ef33fff06433d1Ben Murdoch    BLINK_PLATFORM_EXPORT size_t addReport(const WebString& id, const WebString& type, double timestamp);
53197021e6b966cfb06891637935ef33fff06433d1Ben Murdoch    BLINK_PLATFORM_EXPORT void addStatistic(size_t report, const WebString& name, const WebString& value);
5493ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)
5551b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)#if INSIDE_BLINK
56e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    BLINK_PLATFORM_EXPORT WebRTCStatsResponse(RTCStatsResponseBase*);
57e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    BLINK_PLATFORM_EXPORT operator RTCStatsResponseBase*() const;
585c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)#endif
5993ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)
6093ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)private:
61e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    WebPrivatePtr<RTCStatsResponseBase> m_private;
6293ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)};
6393ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)
6451b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)} // namespace blink
6593ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)
6693ac45cfc74041c8ae536ce58a9534d46db2024eTorne (Richard Coles)#endif // WebRTCStatsResponse_h
67