| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 : public GarbageCollectedFinalized<FrameHost> { | 67 : public GarbageCollectedFinalized<FrameHost> { |
| 68 WTF_MAKE_NONCOPYABLE(FrameHost); | 68 WTF_MAKE_NONCOPYABLE(FrameHost); |
| 69 | 69 |
| 70 public: | 70 public: |
| 71 static FrameHost* create(Page&); | 71 static FrameHost* create(Page&); |
| 72 ~FrameHost(); | 72 ~FrameHost(); |
| 73 | 73 |
| 74 Page& page(); | 74 Page& page(); |
| 75 const Page& page() const; | 75 const Page& page() const; |
| 76 | 76 |
| 77 ChromeClient& chromeClient(); | |
| 78 const ChromeClient& chromeClient() const; | |
| 79 | |
| 80 UseCounter& useCounter(); | 77 UseCounter& useCounter(); |
| 81 const UseCounter& useCounter() const; | 78 const UseCounter& useCounter() const; |
| 82 | 79 |
| 83 Deprecation& deprecation(); | 80 Deprecation& deprecation(); |
| 84 const Deprecation& deprecation() const; | 81 const Deprecation& deprecation() const; |
| 85 | 82 |
| 86 // Corresponds to pixel density of the device where this Page is | 83 // Corresponds to pixel density of the device where this Page is |
| 87 // being displayed. In multi-monitor setups this can vary between pages. | 84 // being displayed. In multi-monitor setups this can vary between pages. |
| 88 // This value does not account for Page zoom, use LocalFrame::devicePixelRatio | 85 // This value does not account for Page zoom, use LocalFrame::devicePixelRatio |
| 89 // instead. This is to be deprecated. Use this with caution. | 86 // instead. This is to be deprecated. Use this with caution. |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 const Member<TopDocumentRootScrollerController> | 143 const Member<TopDocumentRootScrollerController> |
| 147 m_globalRootScrollerController; | 144 m_globalRootScrollerController; |
| 148 | 145 |
| 149 AtomicString m_overrideEncoding; | 146 AtomicString m_overrideEncoding; |
| 150 int m_subframeCount; | 147 int m_subframeCount; |
| 151 }; | 148 }; |
| 152 | 149 |
| 153 } // namespace blink | 150 } // namespace blink |
| 154 | 151 |
| 155 #endif // FrameHost_h | 152 #endif // FrameHost_h |
| OLD | NEW |