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

Unified Diff: Source/modules/screen_orientation/ScreenOrientationController.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
« no previous file with comments | « Source/modules/screen_orientation/ScreenOrientation.h ('k') | Source/modules/serviceworkers/CacheStorage.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/screen_orientation/ScreenOrientationController.h
diff --git a/Source/modules/screen_orientation/ScreenOrientationController.h b/Source/modules/screen_orientation/ScreenOrientationController.h
index f3322662c2098982d8d6ff4a5e734cfbdbe4e218..d81826f23bc6a0b2d2d782c986e877474b2f97a2 100644
--- a/Source/modules/screen_orientation/ScreenOrientationController.h
+++ b/Source/modules/screen_orientation/ScreenOrientationController.h
@@ -13,13 +13,10 @@
#include "public/platform/WebScreenOrientationType.h"
namespace blink {
-class WebScreenOrientationClient;
-}
-
-namespace blink {
class FrameView;
class ScreenOrientation;
+class WebScreenOrientationClient;
class ScreenOrientationController FINAL
: public NoBaseWillBeGarbageCollectedFinalized<ScreenOrientationController>
@@ -35,20 +32,20 @@ public:
void setOrientation(ScreenOrientation*);
void notifyOrientationChanged();
- void lock(blink::WebScreenOrientationLockType, blink::WebLockOrientationCallback*);
+ void lock(WebScreenOrientationLockType, WebLockOrientationCallback*);
void unlock();
const LocalFrame& frame() const;
- static void provideTo(LocalFrame&, blink::WebScreenOrientationClient*);
+ static void provideTo(LocalFrame&, WebScreenOrientationClient*);
static ScreenOrientationController* from(LocalFrame&);
static const char* supplementName();
virtual void trace(Visitor*);
private:
- explicit ScreenOrientationController(LocalFrame&, blink::WebScreenOrientationClient*);
- static blink::WebScreenOrientationType computeOrientation(FrameView*);
+ explicit ScreenOrientationController(LocalFrame&, WebScreenOrientationClient*);
+ static WebScreenOrientationType computeOrientation(FrameView*);
// Inherited from PlatformEventController.
virtual void didUpdateData() OVERRIDE;
@@ -64,7 +61,7 @@ private:
void dispatchEventTimerFired(Timer<ScreenOrientationController>*);
PersistentWillBeMember<ScreenOrientation> m_orientation;
- blink::WebScreenOrientationClient* m_client;
+ WebScreenOrientationClient* m_client;
LocalFrame& m_frame;
Timer<ScreenOrientationController> m_dispatchEventTimer;
};
« no previous file with comments | « Source/modules/screen_orientation/ScreenOrientation.h ('k') | Source/modules/serviceworkers/CacheStorage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698