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

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

Issue 216083002: Revert of Revert of Make start/stop loading notifications per-frame (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/page/Page.h ('k') | Source/web/FrameLoaderClientImpl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All R ights Reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All R ights Reserved.
3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 20 matching lines...) Expand all
31 #include "core/frame/DOMTimer.h" 31 #include "core/frame/DOMTimer.h"
32 #include "core/frame/DOMWindow.h" 32 #include "core/frame/DOMWindow.h"
33 #include "core/frame/FrameHost.h" 33 #include "core/frame/FrameHost.h"
34 #include "core/frame/FrameView.h" 34 #include "core/frame/FrameView.h"
35 #include "core/frame/LocalFrame.h" 35 #include "core/frame/LocalFrame.h"
36 #include "core/frame/Settings.h" 36 #include "core/frame/Settings.h"
37 #include "core/inspector/InspectorController.h" 37 #include "core/inspector/InspectorController.h"
38 #include "core/inspector/InspectorInstrumentation.h" 38 #include "core/inspector/InspectorInstrumentation.h"
39 #include "core/loader/FrameLoader.h" 39 #include "core/loader/FrameLoader.h"
40 #include "core/loader/HistoryItem.h" 40 #include "core/loader/HistoryItem.h"
41 #include "core/loader/ProgressTracker.h"
42 #include "core/page/AutoscrollController.h" 41 #include "core/page/AutoscrollController.h"
43 #include "core/page/Chrome.h" 42 #include "core/page/Chrome.h"
44 #include "core/page/ChromeClient.h" 43 #include "core/page/ChromeClient.h"
45 #include "core/page/ContextMenuController.h" 44 #include "core/page/ContextMenuController.h"
46 #include "core/page/DragController.h" 45 #include "core/page/DragController.h"
47 #include "core/page/FocusController.h" 46 #include "core/page/FocusController.h"
48 #include "core/page/FrameTree.h" 47 #include "core/page/FrameTree.h"
49 #include "core/page/PageLifecycleNotifier.h" 48 #include "core/page/PageLifecycleNotifier.h"
50 #include "core/page/PointerLockController.h" 49 #include "core/page/PointerLockController.h"
51 #include "core/page/StorageClient.h" 50 #include "core/page/StorageClient.h"
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 , m_animator(this) 110 , m_animator(this)
112 , m_autoscrollController(AutoscrollController::create(*this)) 111 , m_autoscrollController(AutoscrollController::create(*this))
113 , m_chrome(Chrome::create(this, pageClients.chromeClient)) 112 , m_chrome(Chrome::create(this, pageClients.chromeClient))
114 , m_dragCaretController(DragCaretController::create()) 113 , m_dragCaretController(DragCaretController::create())
115 , m_dragController(DragController::create(this, pageClients.dragClient)) 114 , m_dragController(DragController::create(this, pageClients.dragClient))
116 , m_focusController(FocusController::create(this)) 115 , m_focusController(FocusController::create(this))
117 , m_contextMenuController(ContextMenuController::create(this, pageClients.co ntextMenuClient)) 116 , m_contextMenuController(ContextMenuController::create(this, pageClients.co ntextMenuClient))
118 , m_inspectorController(InspectorController::create(this, pageClients.inspec torClient)) 117 , m_inspectorController(InspectorController::create(this, pageClients.inspec torClient))
119 , m_pointerLockController(PointerLockController::create(this)) 118 , m_pointerLockController(PointerLockController::create(this))
120 , m_historyController(adoptPtr(new HistoryController(this))) 119 , m_historyController(adoptPtr(new HistoryController(this)))
121 , m_progress(ProgressTracker::create())
122 , m_undoStack(UndoStack::create()) 120 , m_undoStack(UndoStack::create())
123 , m_backForwardClient(pageClients.backForwardClient) 121 , m_backForwardClient(pageClients.backForwardClient)
124 , m_editorClient(pageClients.editorClient) 122 , m_editorClient(pageClients.editorClient)
125 , m_validationMessageClient(0) 123 , m_validationMessageClient(0)
126 , m_spellCheckerClient(pageClients.spellCheckerClient) 124 , m_spellCheckerClient(pageClients.spellCheckerClient)
127 , m_storageClient(pageClients.storageClient) 125 , m_storageClient(pageClients.storageClient)
128 , m_subframeCount(0) 126 , m_subframeCount(0)
129 , m_openedByDOM(false) 127 , m_openedByDOM(false)
130 , m_tabKeyCyclesThroughElements(true) 128 , m_tabKeyCyclesThroughElements(true)
131 , m_defersLoading(false) 129 , m_defersLoading(false)
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 , spellCheckerClient(0) 541 , spellCheckerClient(0)
544 , storageClient(0) 542 , storageClient(0)
545 { 543 {
546 } 544 }
547 545
548 Page::PageClients::~PageClients() 546 Page::PageClients::~PageClients()
549 { 547 {
550 } 548 }
551 549
552 } // namespace WebCore 550 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/page/Page.h ('k') | Source/web/FrameLoaderClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698