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

Side by Side Diff: Source/modules/mediastream/RTCIceCandidate.h

Issue 19724003: Revert "Transition modules/** to use ExceptionState" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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 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 23 matching lines...) Expand all
34 #include "bindings/v8/ScriptWrappable.h" 34 #include "bindings/v8/ScriptWrappable.h"
35 #include "wtf/PassRefPtr.h" 35 #include "wtf/PassRefPtr.h"
36 #include "wtf/RefCounted.h" 36 #include "wtf/RefCounted.h"
37 #include "wtf/RefPtr.h" 37 #include "wtf/RefPtr.h"
38 #include "wtf/text/WTFString.h" 38 #include "wtf/text/WTFString.h"
39 #include "public/platform/WebRTCICECandidate.h" 39 #include "public/platform/WebRTCICECandidate.h"
40 40
41 namespace WebCore { 41 namespace WebCore {
42 42
43 class Dictionary; 43 class Dictionary;
44 class ExceptionState; 44
45 typedef int ExceptionCode;
45 46
46 class RTCIceCandidate : public RefCounted<RTCIceCandidate>, public ScriptWrappab le { 47 class RTCIceCandidate : public RefCounted<RTCIceCandidate>, public ScriptWrappab le {
47 public: 48 public:
48 static PassRefPtr<RTCIceCandidate> create(const Dictionary&, ExceptionState& ); 49 static PassRefPtr<RTCIceCandidate> create(const Dictionary&, ExceptionCode&) ;
49 static PassRefPtr<RTCIceCandidate> create(WebKit::WebRTCICECandidate); 50 static PassRefPtr<RTCIceCandidate> create(WebKit::WebRTCICECandidate);
50 virtual ~RTCIceCandidate(); 51 virtual ~RTCIceCandidate();
51 52
52 String candidate() const; 53 String candidate() const;
53 String sdpMid() const; 54 String sdpMid() const;
54 unsigned short sdpMLineIndex() const; 55 unsigned short sdpMLineIndex() const;
55 56
56 WebKit::WebRTCICECandidate webCandidate(); 57 WebKit::WebRTCICECandidate webCandidate();
57 58
58 private: 59 private:
59 explicit RTCIceCandidate(WebKit::WebRTCICECandidate); 60 explicit RTCIceCandidate(WebKit::WebRTCICECandidate);
60 61
61 WebKit::WebRTCICECandidate m_webCandidate; 62 WebKit::WebRTCICECandidate m_webCandidate;
62 }; 63 };
63 64
64 } // namespace WebCore 65 } // namespace WebCore
65 66
66 #endif // RTCIceCandidate_h 67 #endif // RTCIceCandidate_h
OLDNEW
« no previous file with comments | « Source/modules/mediastream/RTCDataChannel.cpp ('k') | Source/modules/mediastream/RTCIceCandidate.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698