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

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

Issue 879423003: Move Location to DOMWindow (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase, #include cleanup Created 5 years, 10 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
« no previous file with comments | « Source/core/frame/Location.cpp ('k') | Source/core/frame/RemoteDOMWindow.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef RemoteDOMWindow_h 5 #ifndef RemoteDOMWindow_h
6 #define RemoteDOMWindow_h 6 #define RemoteDOMWindow_h
7 7
8 #include "core/frame/DOMWindow.h" 8 #include "core/frame/DOMWindow.h"
9 #include "core/frame/RemoteFrame.h" 9 #include "core/frame/RemoteFrame.h"
10 10
(...skipping 16 matching lines...) Expand all
27 RemoteFrame* frame() const override; 27 RemoteFrame* frame() const override;
28 Screen* screen() const override; 28 Screen* screen() const override;
29 History* history() const override; 29 History* history() const override;
30 BarProp* locationbar() const override; 30 BarProp* locationbar() const override;
31 BarProp* menubar() const override; 31 BarProp* menubar() const override;
32 BarProp* personalbar() const override; 32 BarProp* personalbar() const override;
33 BarProp* scrollbars() const override; 33 BarProp* scrollbars() const override;
34 BarProp* statusbar() const override; 34 BarProp* statusbar() const override;
35 BarProp* toolbar() const override; 35 BarProp* toolbar() const override;
36 Navigator* navigator() const override; 36 Navigator* navigator() const override;
37 Location* location() const override;
38 bool offscreenBuffering() const override; 37 bool offscreenBuffering() const override;
39 int outerHeight() const override; 38 int outerHeight() const override;
40 int outerWidth() const override; 39 int outerWidth() const override;
41 int innerHeight() const override; 40 int innerHeight() const override;
42 int innerWidth() const override; 41 int innerWidth() const override;
43 int screenX() const override; 42 int screenX() const override;
44 int screenY() const override; 43 int screenY() const override;
45 double scrollX() const override; 44 double scrollX() const override;
46 double scrollY() const override; 45 double scrollY() const override;
47 const AtomicString& name() const override; 46 const AtomicString& name() const override;
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 87
89 private: 88 private:
90 explicit RemoteDOMWindow(RemoteFrame&); 89 explicit RemoteDOMWindow(RemoteFrame&);
91 90
92 RawPtrWillBeMember<RemoteFrame> m_frame; 91 RawPtrWillBeMember<RemoteFrame> m_frame;
93 }; 92 };
94 93
95 } // namespace blink 94 } // namespace blink
96 95
97 #endif // DOMWindow_h 96 #endif // DOMWindow_h
OLDNEW
« no previous file with comments | « Source/core/frame/Location.cpp ('k') | Source/core/frame/RemoteDOMWindow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698