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

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

Issue 2449553002: Remove dead DocumentState metrics tracking code (Closed)
Patch Set: fix tests Created 4 years, 1 month 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 Apple Inc. All rights 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
3 * reserved. 3 * reserved.
4 * Copyright (C) 2012 Google Inc. All rights reserved. 4 * Copyright (C) 2012 Google Inc. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 9 *
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 virtual void dispatchDidLoadResourceFromMemoryCache( 93 virtual void dispatchDidLoadResourceFromMemoryCache(
94 const ResourceRequest&, 94 const ResourceRequest&,
95 const ResourceResponse&) = 0; 95 const ResourceResponse&) = 0;
96 96
97 virtual void dispatchDidHandleOnloadEvents() = 0; 97 virtual void dispatchDidHandleOnloadEvents() = 0;
98 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad() = 0; 98 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad() = 0;
99 virtual void dispatchDidNavigateWithinPage(HistoryItem*, 99 virtual void dispatchDidNavigateWithinPage(HistoryItem*,
100 HistoryCommitType, 100 HistoryCommitType,
101 bool contentInitiated) {} 101 bool contentInitiated) {}
102 virtual void dispatchWillCommitProvisionalLoad() = 0; 102 virtual void dispatchWillCommitProvisionalLoad() = 0;
103 virtual void dispatchDidStartProvisionalLoad(double triggeringEventTime) = 0; 103 virtual void dispatchDidStartProvisionalLoad() = 0;
104 virtual void dispatchDidReceiveTitle(const String&) = 0; 104 virtual void dispatchDidReceiveTitle(const String&) = 0;
105 virtual void dispatchDidChangeIcons(IconType) = 0; 105 virtual void dispatchDidChangeIcons(IconType) = 0;
106 virtual void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) = 0; 106 virtual void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) = 0;
107 virtual void dispatchDidFailProvisionalLoad(const ResourceError&, 107 virtual void dispatchDidFailProvisionalLoad(const ResourceError&,
108 HistoryCommitType) = 0; 108 HistoryCommitType) = 0;
109 virtual void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) = 0; 109 virtual void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) = 0;
110 virtual void dispatchDidFinishDocumentLoad() = 0; 110 virtual void dispatchDidFinishDocumentLoad() = 0;
111 virtual void dispatchDidFinishLoad() = 0; 111 virtual void dispatchDidFinishLoad() = 0;
112 virtual void dispatchDidChangeThemeColor() = 0; 112 virtual void dispatchDidChangeThemeColor() = 0;
113 113
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 } 331 }
332 332
333 // Overwrites the given URL to use an HTML5 embed if possible. An empty URL is 333 // Overwrites the given URL to use an HTML5 embed if possible. An empty URL is
334 // returned if the URL is not overriden. 334 // returned if the URL is not overriden.
335 virtual KURL overrideFlashEmbedWithHTML(const KURL&) { return KURL(); } 335 virtual KURL overrideFlashEmbedWithHTML(const KURL&) { return KURL(); }
336 }; 336 };
337 337
338 } // namespace blink 338 } // namespace blink
339 339
340 #endif // FrameLoaderClient_h 340 #endif // FrameLoaderClient_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/FrameLoader.cpp ('k') | third_party/WebKit/Source/web/FrameLoaderClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698