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

Side by Side Diff: third_party/WebKit/Source/modules/mediastream/UserMediaRequest.h

Issue 2801083003: Rewrite references to "wtf/" to "platform/wtf/" in modules. (Closed)
Patch Set: Rebase again^3. Will try landing directly. Created 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Ericsson AB. All rights reserved. 2 * Copyright (C) 2011 Ericsson AB. 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 18 matching lines...) Expand all
29 */ 29 */
30 30
31 #ifndef UserMediaRequest_h 31 #ifndef UserMediaRequest_h
32 #define UserMediaRequest_h 32 #define UserMediaRequest_h
33 33
34 #include "core/dom/SuspendableObject.h" 34 #include "core/dom/SuspendableObject.h"
35 #include "modules/ModulesExport.h" 35 #include "modules/ModulesExport.h"
36 #include "modules/mediastream/NavigatorUserMediaErrorCallback.h" 36 #include "modules/mediastream/NavigatorUserMediaErrorCallback.h"
37 #include "modules/mediastream/NavigatorUserMediaSuccessCallback.h" 37 #include "modules/mediastream/NavigatorUserMediaSuccessCallback.h"
38 #include "platform/mediastream/MediaStreamSource.h" 38 #include "platform/mediastream/MediaStreamSource.h"
39 #include "platform/wtf/Forward.h"
39 #include "public/platform/WebMediaConstraints.h" 40 #include "public/platform/WebMediaConstraints.h"
40 #include "wtf/Forward.h"
41 41
42 namespace blink { 42 namespace blink {
43 43
44 class Document; 44 class Document;
45 class MediaErrorState; 45 class MediaErrorState;
46 class MediaStreamConstraints; 46 class MediaStreamConstraints;
47 class MediaStreamDescriptor; 47 class MediaStreamDescriptor;
48 class UserMediaController; 48 class UserMediaController;
49 49
50 class MODULES_EXPORT UserMediaRequest final 50 class MODULES_EXPORT UserMediaRequest final
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 107
108 Member<UserMediaController> controller_; 108 Member<UserMediaController> controller_;
109 109
110 Member<NavigatorUserMediaSuccessCallback> success_callback_; 110 Member<NavigatorUserMediaSuccessCallback> success_callback_;
111 Member<NavigatorUserMediaErrorCallback> error_callback_; 111 Member<NavigatorUserMediaErrorCallback> error_callback_;
112 }; 112 };
113 113
114 } // namespace blink 114 } // namespace blink
115 115
116 #endif // UserMediaRequest_h 116 #endif // UserMediaRequest_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698