Whitespace cleanup in Screen.h
https://bugs.webkit.org/show_bug.cgi?id=138265
Reviewed by Chris Dumez.
No indent for namespaces. Mark 'final'. Fix * placement.
* page/Screen.h:
(WebCore::Screen::create):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@175434 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Source/WebCore/page/Screen.h b/Source/WebCore/page/Screen.h
index b9a28ad..9472e11 100644
--- a/Source/WebCore/page/Screen.h
+++ b/Source/WebCore/page/Screen.h
@@ -37,24 +37,24 @@
namespace WebCore {
- class Frame;
+class Frame;
- class Screen : public ScriptWrappable, public RefCounted<Screen>, public DOMWindowProperty {
- public:
- static PassRefPtr<Screen> create(Frame *frame) { return adoptRef(new Screen(frame)); }
+class Screen final : public ScriptWrappable, public RefCounted<Screen>, public DOMWindowProperty {
+public:
+ static PassRefPtr<Screen> create(Frame* frame) { return adoptRef(new Screen(frame)); }
- unsigned height() const;
- unsigned width() const;
- unsigned colorDepth() const;
- unsigned pixelDepth() const;
- int availLeft() const;
- int availTop() const;
- unsigned availHeight() const;
- unsigned availWidth() const;
+ unsigned height() const;
+ unsigned width() const;
+ unsigned colorDepth() const;
+ unsigned pixelDepth() const;
+ int availLeft() const;
+ int availTop() const;
+ unsigned availHeight() const;
+ unsigned availWidth() const;
- private:
- explicit Screen(Frame*);
- };
+private:
+ explicit Screen(Frame*);
+};
} // namespace WebCore