| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 class ConsoleMessageStorage; | 45 class ConsoleMessageStorage; |
| 46 class Deprecation; | 46 class Deprecation; |
| 47 class EventHandlerRegistry; | 47 class EventHandlerRegistry; |
| 48 class OverscrollController; | 48 class OverscrollController; |
| 49 class Page; | 49 class Page; |
| 50 struct PageScaleConstraints; | 50 struct PageScaleConstraints; |
| 51 class PageScaleConstraintsSet; | 51 class PageScaleConstraintsSet; |
| 52 class Settings; | 52 class Settings; |
| 53 class TopDocumentRootScrollerController; | 53 class TopDocumentRootScrollerController; |
| 54 class UseCounter; | 54 class UseCounter; |
| 55 class Visitor; | |
| 56 class VisualViewport; | 55 class VisualViewport; |
| 57 | 56 |
| 58 // FrameHost is the set of global data shared between multiple frames | 57 // FrameHost is the set of global data shared between multiple frames |
| 59 // and is provided by the embedder to each frame when created. | 58 // and is provided by the embedder to each frame when created. |
| 60 // FrameHost currently corresponds to the Page object in core/page | 59 // FrameHost currently corresponds to the Page object in core/page |
| 61 // however the concept of a Page is moving up out of Blink. | 60 // however the concept of a Page is moving up out of Blink. |
| 62 // In an out-of-process iframe world, a single Page may have | 61 // In an out-of-process iframe world, a single Page may have |
| 63 // multiple frames in different process, thus Page becomes a | 62 // multiple frames in different process, thus Page becomes a |
| 64 // browser-level concept and Blink core/ only knows about its LocalFrame (and | 63 // browser-level concept and Blink core/ only knows about its LocalFrame (and |
| 65 // FrameHost). Separating Page from the rest of core/ through this indirection | 64 // FrameHost). Separating Page from the rest of core/ through this indirection |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 const Member<TopDocumentRootScrollerController> | 150 const Member<TopDocumentRootScrollerController> |
| 152 m_globalRootScrollerController; | 151 m_globalRootScrollerController; |
| 153 | 152 |
| 154 AtomicString m_overrideEncoding; | 153 AtomicString m_overrideEncoding; |
| 155 int m_subframeCount; | 154 int m_subframeCount; |
| 156 }; | 155 }; |
| 157 | 156 |
| 158 } // namespace blink | 157 } // namespace blink |
| 159 | 158 |
| 160 #endif // FrameHost_h | 159 #endif // FrameHost_h |
| OLD | NEW |