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

Side by Side Diff: Source/core/loader/FrameLoaderClient.h

Issue 1316233007: Remove the old didFirstVisuallyNonEmptyLayout hook. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Missed one more thing to remove. Created 5 years, 3 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/loader/EmptyClients.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 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
3 * Copyright (C) 2012 Google Inc. All rights reserved. 3 * Copyright (C) 2012 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 virtual void dispatchDidNavigateWithinPage(HistoryItem*, HistoryCommitType) { } 89 virtual void dispatchDidNavigateWithinPage(HistoryItem*, HistoryCommitType) { }
90 virtual void dispatchWillClose() = 0; 90 virtual void dispatchWillClose() = 0;
91 virtual void dispatchDidStartProvisionalLoad(double triggeringEventTime) = 0 ; 91 virtual void dispatchDidStartProvisionalLoad(double triggeringEventTime) = 0 ;
92 virtual void dispatchDidReceiveTitle(const String&) = 0; 92 virtual void dispatchDidReceiveTitle(const String&) = 0;
93 virtual void dispatchDidChangeIcons(IconType) = 0; 93 virtual void dispatchDidChangeIcons(IconType) = 0;
94 virtual void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) = 0; 94 virtual void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) = 0;
95 virtual void dispatchDidFailProvisionalLoad(const ResourceError&, HistoryCom mitType) = 0; 95 virtual void dispatchDidFailProvisionalLoad(const ResourceError&, HistoryCom mitType) = 0;
96 virtual void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) = 0; 96 virtual void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) = 0;
97 virtual void dispatchDidFinishDocumentLoad(bool documentIsEmpty) = 0; 97 virtual void dispatchDidFinishDocumentLoad(bool documentIsEmpty) = 0;
98 virtual void dispatchDidFinishLoad() = 0; 98 virtual void dispatchDidFinishLoad() = 0;
99 // TODO(dglazkov): Remove after https://codereview.chromium.org/1319073003 l ands
100 virtual void dispatchDidFirstVisuallyNonEmptyLayout() = 0;
101 virtual void dispatchDidChangeThemeColor() = 0; 99 virtual void dispatchDidChangeThemeColor() = 0;
102 100
103 virtual NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, D ocumentLoader*, NavigationPolicy) = 0; 101 virtual NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, D ocumentLoader*, NavigationPolicy) = 0;
104 102
105 virtual void dispatchWillSendSubmitEvent(HTMLFormElement*) = 0; 103 virtual void dispatchWillSendSubmitEvent(HTMLFormElement*) = 0;
106 virtual void dispatchWillSubmitForm(HTMLFormElement*) = 0; 104 virtual void dispatchWillSubmitForm(HTMLFormElement*) = 0;
107 105
108 virtual void didStartLoading(LoadStartType) = 0; 106 virtual void didStartLoading(LoadStartType) = 0;
109 virtual void progressEstimateChanged(double progressEstimate) = 0; 107 virtual void progressEstimateChanged(double progressEstimate) = 0;
110 virtual void didStopLoading() = 0; 108 virtual void didStopLoading() = 0;
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 BeforeUnloadHandler, 235 BeforeUnloadHandler,
238 UnloadHandler, 236 UnloadHandler,
239 }; 237 };
240 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio nDisablerType) { } 238 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio nDisablerType) { }
241 239
242 }; 240 };
243 241
244 } // namespace blink 242 } // namespace blink
245 243
246 #endif // FrameLoaderClient_h 244 #endif // FrameLoaderClient_h
OLDNEW
« no previous file with comments | « Source/core/loader/EmptyClients.h ('k') | Source/web/FrameLoaderClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698