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

Side by Side Diff: sky/engine/core/page/Page.h

Issue 746023002: Make absolute and sort all Sky headers (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « sky/engine/core/page/FocusController.cpp ('k') | sky/engine/core/page/Page.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 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserv ed. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserv ed.
3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public License 15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 18 * Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21 #ifndef Page_h 21 #ifndef Page_h
22 #define Page_h 22 #define Page_h
23 23
24 #include "core/frame/LocalFrame.h" 24 #include "sky/engine/core/frame/LocalFrame.h"
25 #include "core/frame/SettingsDelegate.h" 25 #include "sky/engine/core/frame/SettingsDelegate.h"
26 #include "core/frame/UseCounter.h" 26 #include "sky/engine/core/frame/UseCounter.h"
27 #include "core/page/PageAnimator.h" 27 #include "sky/engine/core/page/PageAnimator.h"
28 #include "core/page/PageVisibilityState.h" 28 #include "sky/engine/core/page/PageVisibilityState.h"
29 #include "platform/LifecycleContext.h" 29 #include "sky/engine/platform/LifecycleContext.h"
30 #include "platform/Supplementable.h" 30 #include "sky/engine/platform/Supplementable.h"
31 #include "platform/geometry/LayoutRect.h" 31 #include "sky/engine/platform/geometry/LayoutRect.h"
32 #include "platform/geometry/Region.h" 32 #include "sky/engine/platform/geometry/Region.h"
33 #include "platform/heap/Handle.h" 33 #include "sky/engine/platform/heap/Handle.h"
34 #include "wtf/Forward.h" 34 #include "sky/engine/wtf/Forward.h"
35 #include "wtf/HashSet.h" 35 #include "sky/engine/wtf/HashSet.h"
36 #include "wtf/Noncopyable.h" 36 #include "sky/engine/wtf/Noncopyable.h"
37 #include "wtf/text/WTFString.h" 37 #include "sky/engine/wtf/text/WTFString.h"
38 38
39 // FIXME: Page should not need to know anything about InspectorHost. 39 // FIXME: Page should not need to know anything about InspectorHost.
40 namespace inspector { 40 namespace inspector {
41 class InspectorHost; 41 class InspectorHost;
42 } 42 }
43 43
44 namespace blink { 44 namespace blink {
45 45
46 class AutoscrollController; 46 class AutoscrollController;
47 class Chrome; 47 class Chrome;
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 216
217 // A pointer to all the interfaces provided to in-process Frames for this Pa ge. 217 // A pointer to all the interfaces provided to in-process Frames for this Pa ge.
218 // FIXME: Most of the members of Page should move onto FrameHost. 218 // FIXME: Most of the members of Page should move onto FrameHost.
219 OwnPtr<FrameHost> m_frameHost; 219 OwnPtr<FrameHost> m_frameHost;
220 inspector::InspectorHost* m_inspectorHost; 220 inspector::InspectorHost* m_inspectorHost;
221 }; 221 };
222 222
223 } // namespace blink 223 } // namespace blink
224 224
225 #endif // Page_h 225 #endif // Page_h
OLDNEW
« no previous file with comments | « sky/engine/core/page/FocusController.cpp ('k') | sky/engine/core/page/Page.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698