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