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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 ChromeClient& FrameHost::chromeClient() const | 69 ChromeClient& FrameHost::chromeClient() const |
70 { | 70 { |
71 return m_page->chromeClient(); | 71 return m_page->chromeClient(); |
72 } | 72 } |
73 | 73 |
74 UseCounter& FrameHost::useCounter() const | 74 UseCounter& FrameHost::useCounter() const |
75 { | 75 { |
76 return m_page->useCounter(); | 76 return m_page->useCounter(); |
77 } | 77 } |
78 | 78 |
79 Deprecation& FrameHost::deprecation() const | |
80 { | |
81 return m_page->deprecation(); | |
82 } | |
83 | |
84 float FrameHost::deviceScaleFactor() const | 79 float FrameHost::deviceScaleFactor() const |
85 { | 80 { |
86 return m_page->deviceScaleFactor(); | 81 return m_page->deviceScaleFactor(); |
87 } | 82 } |
88 | 83 |
89 TopControls& FrameHost::topControls() const | 84 TopControls& FrameHost::topControls() const |
90 { | 85 { |
91 return *m_topControls; | 86 return *m_topControls; |
92 } | 87 } |
93 | 88 |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 | 172 |
178 FrameView* rootView = page().deprecatedLocalMainFrame()->view(); | 173 FrameView* rootView = page().deprecatedLocalMainFrame()->view(); |
179 | 174 |
180 if (!rootView) | 175 if (!rootView) |
181 return; | 176 return; |
182 | 177 |
183 rootView->setNeedsLayout(); | 178 rootView->setNeedsLayout(); |
184 } | 179 } |
185 | 180 |
186 } // namespace blink | 181 } // namespace blink |
OLD | NEW |