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

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

Issue 2680423006: UseCounter: Introduce UseCounter::Observer for layout tests (Closed)
Patch Set: rebase Created 3 years, 10 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, 2011, 2012, 2013 Apple Inc. All 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All
3 * Rights Reserved. 3 * Rights 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 482 matching lines...) Expand 10 before | Expand all | Expand 10 after
493 visitor->trace(m_autoscrollController); 493 visitor->trace(m_autoscrollController);
494 visitor->trace(m_chromeClient); 494 visitor->trace(m_chromeClient);
495 visitor->trace(m_dragCaret); 495 visitor->trace(m_dragCaret);
496 visitor->trace(m_dragController); 496 visitor->trace(m_dragController);
497 visitor->trace(m_focusController); 497 visitor->trace(m_focusController);
498 visitor->trace(m_contextMenuController); 498 visitor->trace(m_contextMenuController);
499 visitor->trace(m_pointerLockController); 499 visitor->trace(m_pointerLockController);
500 visitor->trace(m_scrollingCoordinator); 500 visitor->trace(m_scrollingCoordinator);
501 visitor->trace(m_mainFrame); 501 visitor->trace(m_mainFrame);
502 visitor->trace(m_validationMessageClient); 502 visitor->trace(m_validationMessageClient);
503 visitor->trace(m_useCounter);
503 visitor->trace(m_frameHost); 504 visitor->trace(m_frameHost);
504 Supplementable<Page>::trace(visitor); 505 Supplementable<Page>::trace(visitor);
505 PageVisibilityNotifier::trace(visitor); 506 PageVisibilityNotifier::trace(visitor);
506 } 507 }
507 508
508 void Page::layerTreeViewInitialized(WebLayerTreeView& layerTreeView, 509 void Page::layerTreeViewInitialized(WebLayerTreeView& layerTreeView,
509 FrameView* view) { 510 FrameView* view) {
510 if (scrollingCoordinator()) 511 if (scrollingCoordinator())
511 scrollingCoordinator()->layerTreeViewInitialized(layerTreeView, view); 512 scrollingCoordinator()->layerTreeViewInitialized(layerTreeView, view);
512 } 513 }
(...skipping 28 matching lines...) Expand all
541 : chromeClient(nullptr), 542 : chromeClient(nullptr),
542 contextMenuClient(nullptr), 543 contextMenuClient(nullptr),
543 editorClient(nullptr), 544 editorClient(nullptr),
544 spellCheckerClient(nullptr) {} 545 spellCheckerClient(nullptr) {}
545 546
546 Page::PageClients::~PageClients() {} 547 Page::PageClients::~PageClients() {}
547 548
548 template class CORE_TEMPLATE_EXPORT Supplement<Page>; 549 template class CORE_TEMPLATE_EXPORT Supplement<Page>;
549 550
550 } // namespace blink 551 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698