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

Side by Side Diff: Source/core/frame/Screen.h

Issue 243173004: Make window.screen property non replaceable (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix clang error Created 6 years, 8 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) 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2007 Apple 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 22 matching lines...) Expand all
33 #include "bindings/v8/ScriptWrappable.h" 33 #include "bindings/v8/ScriptWrappable.h"
34 #include "core/events/EventTarget.h" 34 #include "core/events/EventTarget.h"
35 #include "core/frame/DOMWindowProperty.h" 35 #include "core/frame/DOMWindowProperty.h"
36 #include "heap/Handle.h" 36 #include "heap/Handle.h"
37 #include "platform/Supplementable.h" 37 #include "platform/Supplementable.h"
38 #include "wtf/PassRefPtr.h" 38 #include "wtf/PassRefPtr.h"
39 #include "wtf/RefCounted.h" 39 #include "wtf/RefCounted.h"
40 40
41 namespace WebCore { 41 namespace WebCore {
42 42
43 class Dictionary;
43 class LocalFrame; 44 class LocalFrame;
44 45
45 class Screen FINAL : public RefCountedWillBeRefCountedGarbageCollected<Scree n>, public ScriptWrappable, public EventTargetWithInlineData, public DOMWindowPr operty, public WillBeHeapSupplementable<Screen> { 46 class Screen FINAL : public RefCountedWillBeRefCountedGarbageCollected<Scree n>, public ScriptWrappable, public EventTargetWithInlineData, public DOMWindowPr operty, public WillBeHeapSupplementable<Screen> {
46 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Screen); 47 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Screen);
47 DEFINE_EVENT_TARGET_REFCOUNTING(RefCountedWillBeRefCountedGarbageCollect ed<Screen>); 48 DEFINE_EVENT_TARGET_REFCOUNTING(RefCountedWillBeRefCountedGarbageCollect ed<Screen>);
48 public: 49 public:
49 static PassRefPtrWillBeRawPtr<Screen> create(LocalFrame* frame) 50 static PassRefPtrWillBeRawPtr<Screen> create(LocalFrame* frame)
50 { 51 {
51 return adoptRefWillBeRefCountedGarbageCollected(new Screen(frame)); 52 return adoptRefWillBeRefCountedGarbageCollected(new Screen(frame));
52 } 53 }
53 54
54 unsigned height() const; 55 unsigned height() const;
55 unsigned width() const; 56 unsigned width() const;
56 unsigned colorDepth() const; 57 unsigned colorDepth() const;
57 unsigned pixelDepth() const; 58 unsigned pixelDepth() const;
58 int availLeft() const; 59 int availLeft() const;
59 int availTop() const; 60 int availTop() const;
60 unsigned availHeight() const; 61 unsigned availHeight() const;
61 unsigned availWidth() const; 62 unsigned availWidth() const;
62 63
63 // EventTarget. 64 // EventTarget.
64 virtual const AtomicString& interfaceName() const OVERRIDE; 65 virtual const AtomicString& interfaceName() const OVERRIDE;
65 virtual ExecutionContext* executionContext() const OVERRIDE; 66 virtual ExecutionContext* executionContext() const OVERRIDE;
66 67
67 void trace(Visitor*); 68 void trace(Visitor*);
68 69
70 // For layout tests.
71 static void setOverrideScreenData(const Dictionary&);
72 static void clearOverrideScreenData();
73
69 private: 74 private:
70 explicit Screen(LocalFrame*); 75 explicit Screen(LocalFrame*);
71 }; 76 };
72 77
73 } // namespace WebCore 78 } // namespace WebCore
74 79
75 #endif // Screen_h 80 #endif // Screen_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698