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

Unified Diff: public/platform/WebRTCConfiguration.h

Issue 462843003: Cleanup namespace usage in public/platform/{Web[P-W]*,linux/*}.h (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « public/platform/WebPrivatePtr.h ('k') | public/platform/WebRTCDTMFSenderHandler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebRTCConfiguration.h
diff --git a/public/platform/WebRTCConfiguration.h b/public/platform/WebRTCConfiguration.h
index 0881bb735215bad85e4a2bb2d960fe5b0fb35695..c307cdf381b1438c41b76e26cd0cbe804095b503 100644
--- a/public/platform/WebRTCConfiguration.h
+++ b/public/platform/WebRTCConfiguration.h
@@ -37,11 +37,9 @@
#include "WebVector.h"
namespace blink {
+
class RTCIceServer;
class RTCConfiguration;
-}
-
-namespace blink {
class WebString;
class WebURL;
@@ -67,11 +65,11 @@ public:
BLINK_PLATFORM_EXPORT WebString credential() const;
#if INSIDE_BLINK
- BLINK_PLATFORM_EXPORT WebRTCICEServer(const WTF::PassRefPtr<blink::RTCIceServer>&);
+ BLINK_PLATFORM_EXPORT WebRTCICEServer(const WTF::PassRefPtr<RTCIceServer>&);
#endif
private:
- WebPrivatePtr<blink::RTCIceServer> m_private;
+ WebPrivatePtr<RTCIceServer> m_private;
};
enum WebRTCIceTransports {
@@ -103,11 +101,11 @@ public:
BLINK_PLATFORM_EXPORT WebRTCIceTransports iceTransports() const;
#if INSIDE_BLINK
- BLINK_PLATFORM_EXPORT WebRTCConfiguration(const WTF::PassRefPtr<blink::RTCConfiguration>&);
+ BLINK_PLATFORM_EXPORT WebRTCConfiguration(const WTF::PassRefPtr<RTCConfiguration>&);
#endif
private:
- WebPrivatePtr<blink::RTCConfiguration> m_private;
+ WebPrivatePtr<RTCConfiguration> m_private;
};
} // namespace blink
« no previous file with comments | « public/platform/WebPrivatePtr.h ('k') | public/platform/WebRTCDTMFSenderHandler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698