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

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

Issue 183793002: Make start/stop loading notifications per-frame (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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/accessibility/AXRenderObject.cpp ('k') | Source/core/loader/FrameFetchContext.cpp » ('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 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 virtual void dispatchDidFailLoad(const ResourceError&) OVERRIDE { } 205 virtual void dispatchDidFailLoad(const ResourceError&) OVERRIDE { }
206 virtual void dispatchDidFinishDocumentLoad() OVERRIDE { } 206 virtual void dispatchDidFinishDocumentLoad() OVERRIDE { }
207 virtual void dispatchDidFinishLoad() OVERRIDE { } 207 virtual void dispatchDidFinishLoad() OVERRIDE { }
208 virtual void dispatchDidFirstVisuallyNonEmptyLayout() OVERRIDE { } 208 virtual void dispatchDidFirstVisuallyNonEmptyLayout() OVERRIDE { }
209 209
210 virtual NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, D ocumentLoader*, NavigationPolicy) OVERRIDE; 210 virtual NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, D ocumentLoader*, NavigationPolicy) OVERRIDE;
211 211
212 virtual void dispatchWillSendSubmitEvent(HTMLFormElement*) OVERRIDE; 212 virtual void dispatchWillSendSubmitEvent(HTMLFormElement*) OVERRIDE;
213 virtual void dispatchWillSubmitForm(HTMLFormElement*) OVERRIDE; 213 virtual void dispatchWillSubmitForm(HTMLFormElement*) OVERRIDE;
214 214
215 virtual void postProgressStartedNotification(LoadStartType) OVERRIDE { } 215 virtual void didStartLoading(LoadStartType) OVERRIDE { }
216 virtual void postProgressEstimateChangedNotification() OVERRIDE { } 216 virtual void progressEstimateChanged(double) OVERRIDE { }
217 virtual void postProgressFinishedNotification() OVERRIDE { } 217 virtual void didStopLoading() OVERRIDE { }
218 218
219 virtual void loadURLExternally(const ResourceRequest&, NavigationPolicy, con st String& = String()) OVERRIDE { } 219 virtual void loadURLExternally(const ResourceRequest&, NavigationPolicy, con st String& = String()) OVERRIDE { }
220 220
221 virtual PassRefPtr<DocumentLoader> createDocumentLoader(LocalFrame*, const R esourceRequest&, const SubstituteData&) OVERRIDE; 221 virtual PassRefPtr<DocumentLoader> createDocumentLoader(LocalFrame*, const R esourceRequest&, const SubstituteData&) OVERRIDE;
222 222
223 virtual String userAgent(const KURL&) OVERRIDE { return ""; } 223 virtual String userAgent(const KURL&) OVERRIDE { return ""; }
224 224
225 virtual String doNotTrackValue() OVERRIDE { return String(); } 225 virtual String doNotTrackValue() OVERRIDE { return String(); }
226 226
227 virtual void transitionToCommittedForNewPage() OVERRIDE { } 227 virtual void transitionToCommittedForNewPage() OVERRIDE { }
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 public: 337 public:
338 virtual PassOwnPtr<StorageNamespace> createSessionStorageNamespace() OVERRID E; 338 virtual PassOwnPtr<StorageNamespace> createSessionStorageNamespace() OVERRID E;
339 virtual bool canAccessStorage(LocalFrame*, StorageType) const OVERRIDE { ret urn false; } 339 virtual bool canAccessStorage(LocalFrame*, StorageType) const OVERRIDE { ret urn false; }
340 }; 340 };
341 341
342 void fillWithEmptyClients(Page::PageClients&); 342 void fillWithEmptyClients(Page::PageClients&);
343 343
344 } 344 }
345 345
346 #endif // EmptyClients_h 346 #endif // EmptyClients_h
OLDNEW
« no previous file with comments | « Source/core/accessibility/AXRenderObject.cpp ('k') | Source/core/loader/FrameFetchContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698