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

Unified Diff: Source/modules/screen_orientation/ScreenOrientation.h

Issue 461163002: Cleanup namespace usage in Source/core/modules/[mediasource/* to websockets/*] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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
Index: Source/modules/screen_orientation/ScreenOrientation.h
diff --git a/Source/modules/screen_orientation/ScreenOrientation.h b/Source/modules/screen_orientation/ScreenOrientation.h
index 4a9b2cbfc66ab5aa2a9bb13c8c8c7b576e6a5c72..e48de96fde463aa26fdbdd16e36cf7cb6d0c8c09 100644
--- a/Source/modules/screen_orientation/ScreenOrientation.h
+++ b/Source/modules/screen_orientation/ScreenOrientation.h
@@ -39,7 +39,7 @@ public:
String type() const;
unsigned short angle() const;
- void setType(blink::WebScreenOrientationType);
+ void setType(WebScreenOrientationType);
void setAngle(unsigned short);
ScriptPromise lock(ScriptState*, const AtomicString& orientation);
@@ -48,7 +48,7 @@ public:
DEFINE_ATTRIBUTE_EVENT_LISTENER(change);
// Helper being used by this class and LockOrientationCallback.
- static const AtomicString& orientationTypeToString(blink::WebScreenOrientationType);
+ static const AtomicString& orientationTypeToString(WebScreenOrientationType);
virtual void trace(Visitor*) OVERRIDE;
@@ -57,7 +57,7 @@ private:
ScreenOrientationController* controller();
- blink::WebScreenOrientationType m_type;
+ WebScreenOrientationType m_type;
unsigned short m_angle;
};

Powered by Google App Engine
This is Rietveld 408576698