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

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

Issue 2631853002: Give OOPIF FrameViews their own scroll animation timelines and hosts (Closed)
Patch Set: Fixes from bokan comments Created 3 years, 11 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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 #endif 219 #endif
220 220
221 void didCommitLoad(LocalFrame*); 221 void didCommitLoad(LocalFrame*);
222 222
223 void acceptLanguagesChanged(); 223 void acceptLanguagesChanged();
224 224
225 static void networkStateChanged(bool online); 225 static void networkStateChanged(bool online);
226 226
227 DECLARE_TRACE(); 227 DECLARE_TRACE();
228 228
229 void layerTreeViewInitialized(WebLayerTreeView&); 229 void layerTreeViewInitialized(WebLayerTreeView&, FrameView*);
230 void willCloseLayerTreeView(WebLayerTreeView&); 230 void willCloseLayerTreeView(WebLayerTreeView&, FrameView*);
231 231
232 void willBeDestroyed(); 232 void willBeDestroyed();
233 233
234 private: 234 private:
235 friend class ScopedPageSuspender; 235 friend class ScopedPageSuspender;
236 236
237 explicit Page(PageClients&); 237 explicit Page(PageClients&);
238 238
239 void initGroup(); 239 void initGroup();
240 240
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 // Page. 303 // Page.
304 // FIXME: Most of the members of Page should move onto FrameHost. 304 // FIXME: Most of the members of Page should move onto FrameHost.
305 Member<FrameHost> m_frameHost; 305 Member<FrameHost> m_frameHost;
306 }; 306 };
307 307
308 extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<Page>; 308 extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<Page>;
309 309
310 } // namespace blink 310 } // namespace blink
311 311
312 #endif // Page_h 312 #endif // Page_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/VisualViewport.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