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

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

Issue 6541090: Merge 79107 - 2011-02-19 Charlie Reis <creis@chromium.org>... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/648/
Patch Set: Created 9 years, 10 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
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 Apple Inc. All rights reserved. 3 * Copyright (C) 2008, 2009, 2010 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 * 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 * 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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 virtual void transitionToCommittedForNewPage() { } 339 virtual void transitionToCommittedForNewPage() { }
340 340
341 virtual void didSaveToPageCache() { } 341 virtual void didSaveToPageCache() { }
342 virtual void didRestoreFromPageCache() { } 342 virtual void didRestoreFromPageCache() { }
343 343
344 virtual void dispatchDidBecomeFrameset(bool) { } 344 virtual void dispatchDidBecomeFrameset(bool) { }
345 345
346 virtual void updateGlobalHistory() { } 346 virtual void updateGlobalHistory() { }
347 virtual void updateGlobalHistoryRedirectLinks() { } 347 virtual void updateGlobalHistoryRedirectLinks() { }
348 virtual bool shouldGoToHistoryItem(HistoryItem*) const { return false; } 348 virtual bool shouldGoToHistoryItem(HistoryItem*) const { return false; }
349 virtual bool shouldStopLoadingForHistoryItem(HistoryItem*) const { return fa lse; }
349 virtual void dispatchDidAddBackForwardItem(HistoryItem*) const { } 350 virtual void dispatchDidAddBackForwardItem(HistoryItem*) const { }
350 virtual void dispatchDidRemoveBackForwardItem(HistoryItem*) const { }; 351 virtual void dispatchDidRemoveBackForwardItem(HistoryItem*) const { };
351 virtual void dispatchDidChangeBackForwardIndex() const { } 352 virtual void dispatchDidChangeBackForwardIndex() const { }
352 virtual void saveViewStateToItem(HistoryItem*) { } 353 virtual void saveViewStateToItem(HistoryItem*) { }
353 virtual bool canCachePage() const { return false; } 354 virtual bool canCachePage() const { return false; }
354 virtual void didDisplayInsecureContent() { } 355 virtual void didDisplayInsecureContent() { }
355 virtual void didRunInsecureContent(SecurityOrigin*) { } 356 virtual void didRunInsecureContent(SecurityOrigin*) { }
356 virtual PassRefPtr<Frame> createFrame(const KURL&, const String&, HTMLFrameO wnerElement*, const String&, bool, int, int) { return 0; } 357 virtual PassRefPtr<Frame> createFrame(const KURL&, const String&, HTMLFrameO wnerElement*, const String&, bool, int, int) { return 0; }
357 virtual void didTransferChildFrameToNewDocument(Page*) { } 358 virtual void didTransferChildFrameToNewDocument(Page*) { }
358 virtual void transferLoadingResourceFromPage(unsigned long, DocumentLoader*, const ResourceRequest&, Page*) { } 359 virtual void transferLoadingResourceFromPage(unsigned long, DocumentLoader*, const ResourceRequest&, Page*) { }
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
584 virtual void setController(DeviceOrientationController*) { } 585 virtual void setController(DeviceOrientationController*) { }
585 virtual void startUpdating() { } 586 virtual void startUpdating() { }
586 virtual void stopUpdating() { } 587 virtual void stopUpdating() { }
587 virtual DeviceOrientation* lastOrientation() const { return 0; } 588 virtual DeviceOrientation* lastOrientation() const { return 0; }
588 virtual void deviceOrientationControllerDestroyed() { } 589 virtual void deviceOrientationControllerDestroyed() { }
589 }; 590 };
590 591
591 } 592 }
592 593
593 #endif // EmptyClients_h 594 #endif // EmptyClients_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698