OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights |
3 * reserved. | 3 * reserved. |
4 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. | 4 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. |
5 * (http://www.torchmobile.com/) | 5 * (http://www.torchmobile.com/) |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 21 matching lines...) Expand all Loading... |
32 #include "core/frame/UseCounter.h" | 32 #include "core/frame/UseCounter.h" |
33 #include "core/page/Page.h" | 33 #include "core/page/Page.h" |
34 #include "core/page/PageAnimator.h" | 34 #include "core/page/PageAnimator.h" |
35 #include "core/page/PageVisibilityNotifier.h" | 35 #include "core/page/PageVisibilityNotifier.h" |
36 #include "core/page/PageVisibilityObserver.h" | 36 #include "core/page/PageVisibilityObserver.h" |
37 #include "core/page/PageVisibilityState.h" | 37 #include "core/page/PageVisibilityState.h" |
38 #include "platform/Supplementable.h" | 38 #include "platform/Supplementable.h" |
39 #include "platform/geometry/LayoutRect.h" | 39 #include "platform/geometry/LayoutRect.h" |
40 #include "platform/geometry/Region.h" | 40 #include "platform/geometry/Region.h" |
41 #include "platform/heap/Handle.h" | 41 #include "platform/heap/Handle.h" |
42 #include "wtf/Forward.h" | 42 #include "platform/wtf/Forward.h" |
43 #include "wtf/HashSet.h" | 43 #include "platform/wtf/HashSet.h" |
44 #include "wtf/Noncopyable.h" | 44 #include "platform/wtf/Noncopyable.h" |
45 #include "wtf/text/WTFString.h" | 45 #include "platform/wtf/text/WTFString.h" |
46 | 46 |
47 namespace blink { | 47 namespace blink { |
48 | 48 |
49 class AutoscrollController; | 49 class AutoscrollController; |
50 class BrowserControls; | 50 class BrowserControls; |
51 class ChromeClient; | 51 class ChromeClient; |
52 class ClientRectList; | 52 class ClientRectList; |
53 class ContextMenuClient; | 53 class ContextMenuClient; |
54 class ContextMenuController; | 54 class ContextMenuController; |
55 class Document; | 55 class Document; |
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 #endif | 356 #endif |
357 | 357 |
358 int subframe_count_; | 358 int subframe_count_; |
359 }; | 359 }; |
360 | 360 |
361 extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<Page>; | 361 extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<Page>; |
362 | 362 |
363 } // namespace blink | 363 } // namespace blink |
364 | 364 |
365 #endif // Page_h | 365 #endif // Page_h |
OLD | NEW |