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

Side by Side Diff: third_party/WebKit/Source/web/FrameLoaderClientImpl.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) 2009, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2011 Apple 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 are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * 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 void dispatchWillSendRequest(ResourceRequest&) override; 89 void dispatchWillSendRequest(ResourceRequest&) override;
90 void dispatchDidReceiveResponse(const ResourceResponse&) override; 90 void dispatchDidReceiveResponse(const ResourceResponse&) override;
91 void dispatchDidLoadResourceFromMemoryCache(const ResourceRequest&, 91 void dispatchDidLoadResourceFromMemoryCache(const ResourceRequest&,
92 const ResourceResponse&) override; 92 const ResourceResponse&) override;
93 void dispatchDidHandleOnloadEvents() override; 93 void dispatchDidHandleOnloadEvents() override;
94 void dispatchDidReceiveServerRedirectForProvisionalLoad() override; 94 void dispatchDidReceiveServerRedirectForProvisionalLoad() override;
95 void dispatchDidNavigateWithinPage(HistoryItem*, 95 void dispatchDidNavigateWithinPage(HistoryItem*,
96 HistoryCommitType, 96 HistoryCommitType,
97 bool contentInitiated) override; 97 bool contentInitiated) override;
98 void dispatchWillCommitProvisionalLoad() override; 98 void dispatchWillCommitProvisionalLoad() override;
99 void dispatchDidStartProvisionalLoad(double triggeringEventTime) override; 99 void dispatchDidStartProvisionalLoad() override;
100 void dispatchDidReceiveTitle(const String&) override; 100 void dispatchDidReceiveTitle(const String&) override;
101 void dispatchDidChangeIcons(IconType) override; 101 void dispatchDidChangeIcons(IconType) override;
102 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override; 102 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override;
103 void dispatchDidFailProvisionalLoad(const ResourceError&, 103 void dispatchDidFailProvisionalLoad(const ResourceError&,
104 HistoryCommitType) override; 104 HistoryCommitType) override;
105 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override; 105 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override;
106 void dispatchDidFinishDocumentLoad() override; 106 void dispatchDidFinishDocumentLoad() override;
107 void dispatchDidFinishLoad() override; 107 void dispatchDidFinishLoad() override;
108 108
109 void dispatchDidChangeThemeColor() override; 109 void dispatchDidChangeThemeColor() override;
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 233
234 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, 234 DEFINE_TYPE_CASTS(FrameLoaderClientImpl,
235 FrameLoaderClient, 235 FrameLoaderClient,
236 client, 236 client,
237 client->isFrameLoaderClientImpl(), 237 client->isFrameLoaderClientImpl(),
238 client.isFrameLoaderClientImpl()); 238 client.isFrameLoaderClientImpl());
239 239
240 } // namespace blink 240 } // namespace blink
241 241
242 #endif 242 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/FrameLoaderClient.h ('k') | third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698