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

Side by Side Diff: Source/platform/mediastream/RTCStatsRequest.h

Issue 531983002: Clean up forward declarations in Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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
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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 20 matching lines...) Expand all
31 #ifndef RTCStatsRequest_h 31 #ifndef RTCStatsRequest_h
32 #define RTCStatsRequest_h 32 #define RTCStatsRequest_h
33 33
34 #include "platform/heap/Handle.h" 34 #include "platform/heap/Handle.h"
35 #include "wtf/PassRefPtr.h" 35 #include "wtf/PassRefPtr.h"
36 #include "wtf/text/WTFString.h" 36 #include "wtf/text/WTFString.h"
37 37
38 namespace blink { 38 namespace blink {
39 39
40 class MediaStreamComponent; 40 class MediaStreamComponent;
41 class MediaStreamDescriptor;
42 class RTCStatsResponseBase; 41 class RTCStatsResponseBase;
43 42
44 class RTCStatsRequest : public GarbageCollectedFinalized<RTCStatsRequest> { 43 class RTCStatsRequest : public GarbageCollectedFinalized<RTCStatsRequest> {
45 public: 44 public:
46 virtual ~RTCStatsRequest() { } 45 virtual ~RTCStatsRequest() { }
47 46
48 virtual RTCStatsResponseBase* createResponse() = 0; 47 virtual RTCStatsResponseBase* createResponse() = 0;
49 virtual bool hasSelector() = 0; 48 virtual bool hasSelector() = 0;
50 virtual MediaStreamComponent* component() = 0; 49 virtual MediaStreamComponent* component() = 0;
51 virtual void requestSucceeded(RTCStatsResponseBase*) = 0; 50 virtual void requestSucceeded(RTCStatsResponseBase*) = 0;
52 51
53 virtual void trace(Visitor*) { } 52 virtual void trace(Visitor*) { }
54 53
55 protected: 54 protected:
56 RTCStatsRequest() { } 55 RTCStatsRequest() { }
57 }; 56 };
58 57
59 } // namespace blink 58 } // namespace blink
60 59
61 #endif // RTCStatsRequest_h 60 #endif // RTCStatsRequest_h
OLDNEW
« no previous file with comments | « Source/platform/mediastream/MediaStreamComponent.h ('k') | Source/platform/scroll/ScrollAnimatorNone.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698