Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Side by Side Diff: third_party/WebKit/Source/core/page/Page.h

Issue 2531603003: Only scroll on main if the targeted frames need to scroll on main (Closed)
Patch Set: Resolve conflict Created 3 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 PointerLockController& pointerLockController() const { 164 PointerLockController& pointerLockController() const {
165 return *m_pointerLockController; 165 return *m_pointerLockController;
166 } 166 }
167 ValidationMessageClient& validationMessageClient() const { 167 ValidationMessageClient& validationMessageClient() const {
168 return *m_validationMessageClient; 168 return *m_validationMessageClient;
169 } 169 }
170 void setValidationMessageClient(ValidationMessageClient*); 170 void setValidationMessageClient(ValidationMessageClient*);
171 171
172 ScrollingCoordinator* scrollingCoordinator(); 172 ScrollingCoordinator* scrollingCoordinator();
173 173
174 String mainThreadScrollingReasonsAsText();
175 ClientRectList* nonFastScrollableRects(const LocalFrame*); 174 ClientRectList* nonFastScrollableRects(const LocalFrame*);
176 175
177 Settings& settings() const { return *m_settings; } 176 Settings& settings() const { return *m_settings; }
178 177
179 UseCounter& useCounter() { return m_useCounter; } 178 UseCounter& useCounter() { return m_useCounter; }
180 Deprecation& deprecation() { return m_deprecation; } 179 Deprecation& deprecation() { return m_deprecation; }
181 HostsUsingFeatures& hostsUsingFeatures() { return m_hostsUsingFeatures; } 180 HostsUsingFeatures& hostsUsingFeatures() { return m_hostsUsingFeatures; }
182 181
183 void setTabKeyCyclesThroughElements(bool b) { 182 void setTabKeyCyclesThroughElements(bool b) {
184 m_tabKeyCyclesThroughElements = b; 183 m_tabKeyCyclesThroughElements = b;
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 // Page. 287 // Page.
289 // FIXME: Most of the members of Page should move onto FrameHost. 288 // FIXME: Most of the members of Page should move onto FrameHost.
290 Member<FrameHost> m_frameHost; 289 Member<FrameHost> m_frameHost;
291 }; 290 };
292 291
293 extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<Page>; 292 extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<Page>;
294 293
295 } // namespace blink 294 } // namespace blink
296 295
297 #endif // Page_h 296 #endif // Page_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameView.cpp ('k') | third_party/WebKit/Source/core/page/Page.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698