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

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

Issue 24009002: Move synchronously fetching to ResourceFetcher, as well as most of the logic (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org) 2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org)
3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
9 * are met: 9 * are met:
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 virtual ~EmptyFrameLoaderClient() { } 186 virtual ~EmptyFrameLoaderClient() { }
187 virtual void frameLoaderDestroyed() OVERRIDE { } 187 virtual void frameLoaderDestroyed() OVERRIDE { }
188 188
189 virtual bool hasWebView() const OVERRIDE { return true; } // mainly for asse rtions 189 virtual bool hasWebView() const OVERRIDE { return true; } // mainly for asse rtions
190 190
191 virtual void detachedFromParent() OVERRIDE { } 191 virtual void detachedFromParent() OVERRIDE { }
192 192
193 virtual void dispatchWillSendRequest(DocumentLoader*, unsigned long, Resourc eRequest&, const ResourceResponse&) OVERRIDE { } 193 virtual void dispatchWillSendRequest(DocumentLoader*, unsigned long, Resourc eRequest&, const ResourceResponse&) OVERRIDE { }
194 virtual void dispatchDidReceiveResponse(DocumentLoader*, unsigned long, cons t ResourceResponse&) OVERRIDE { } 194 virtual void dispatchDidReceiveResponse(DocumentLoader*, unsigned long, cons t ResourceResponse&) OVERRIDE { }
195 virtual void dispatchDidFinishLoading(DocumentLoader*, unsigned long) OVERRI DE { } 195 virtual void dispatchDidFinishLoading(DocumentLoader*, unsigned long) OVERRI DE { }
196 virtual void dispatchDidLoadResourceFromMemoryCache(DocumentLoader*, const R esourceRequest&, const ResourceResponse&, int) OVERRIDE { } 196 virtual void dispatchDidLoadResourceFromMemoryCache(const ResourceRequest&, const ResourceResponse&) OVERRIDE { }
197 197
198 virtual void dispatchDidHandleOnloadEvents() OVERRIDE { } 198 virtual void dispatchDidHandleOnloadEvents() OVERRIDE { }
199 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad() OVERRIDE { } 199 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad() OVERRIDE { }
200 virtual void dispatchWillClose() OVERRIDE { } 200 virtual void dispatchWillClose() OVERRIDE { }
201 virtual void dispatchDidStartProvisionalLoad() OVERRIDE { } 201 virtual void dispatchDidStartProvisionalLoad() OVERRIDE { }
202 virtual void dispatchDidReceiveTitle(const String&) OVERRIDE { } 202 virtual void dispatchDidReceiveTitle(const String&) OVERRIDE { }
203 virtual void dispatchDidChangeIcons(IconType) OVERRIDE { } 203 virtual void dispatchDidChangeIcons(IconType) OVERRIDE { }
204 virtual void dispatchDidCommitLoad() OVERRIDE { } 204 virtual void dispatchDidCommitLoad() OVERRIDE { }
205 virtual void dispatchDidFailProvisionalLoad(const ResourceError&) OVERRIDE { } 205 virtual void dispatchDidFailProvisionalLoad(const ResourceError&) OVERRIDE { }
206 virtual void dispatchDidFailLoad(const ResourceError&) OVERRIDE { } 206 virtual void dispatchDidFailLoad(const ResourceError&) OVERRIDE { }
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 virtual void didAddItem() OVERRIDE { } 362 virtual void didAddItem() OVERRIDE { }
363 virtual int backListCount() OVERRIDE { return 0; } 363 virtual int backListCount() OVERRIDE { return 0; }
364 virtual int forwardListCount() OVERRIDE { return 0; } 364 virtual int forwardListCount() OVERRIDE { return 0; }
365 }; 365 };
366 366
367 void fillWithEmptyClients(Page::PageClients&); 367 void fillWithEmptyClients(Page::PageClients&);
368 368
369 } 369 }
370 370
371 #endif // EmptyClients_h 371 #endif // EmptyClients_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698