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

Side by Side Diff: Source/WebKit/win/WebCoreSupport/WebFrameLoaderClient.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
« no previous file with comments | « Source/WebKit/win/ChangeLog ('k') | Source/WebKit/win/WebCoreSupport/WebFrameLoaderClient.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, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 virtual void postProgressStartedNotification(); 87 virtual void postProgressStartedNotification();
88 virtual void postProgressEstimateChangedNotification(); 88 virtual void postProgressEstimateChangedNotification();
89 virtual void postProgressFinishedNotification(); 89 virtual void postProgressFinishedNotification();
90 90
91 virtual void committedLoad(WebCore::DocumentLoader*, const char*, int); 91 virtual void committedLoad(WebCore::DocumentLoader*, const char*, int);
92 virtual void finishedLoading(WebCore::DocumentLoader*); 92 virtual void finishedLoading(WebCore::DocumentLoader*);
93 93
94 virtual void updateGlobalHistory(); 94 virtual void updateGlobalHistory();
95 virtual void updateGlobalHistoryRedirectLinks(); 95 virtual void updateGlobalHistoryRedirectLinks();
96 virtual bool shouldGoToHistoryItem(WebCore::HistoryItem*) const; 96 virtual bool shouldGoToHistoryItem(WebCore::HistoryItem*) const;
97 virtual bool shouldStopLoadingForHistoryItem(WebCore::HistoryItem*) const;
97 virtual void dispatchDidAddBackForwardItem(WebCore::HistoryItem*) const; 98 virtual void dispatchDidAddBackForwardItem(WebCore::HistoryItem*) const;
98 virtual void dispatchDidRemoveBackForwardItem(WebCore::HistoryItem*) const; 99 virtual void dispatchDidRemoveBackForwardItem(WebCore::HistoryItem*) const;
99 virtual void dispatchDidChangeBackForwardIndex() const; 100 virtual void dispatchDidChangeBackForwardIndex() const;
100 101
101 virtual void didDisplayInsecureContent(); 102 virtual void didDisplayInsecureContent();
102 virtual void didRunInsecureContent(WebCore::SecurityOrigin*); 103 virtual void didRunInsecureContent(WebCore::SecurityOrigin*);
103 104
104 virtual PassRefPtr<WebCore::DocumentLoader> createDocumentLoader(const WebCo re::ResourceRequest&, const WebCore::SubstituteData&); 105 virtual PassRefPtr<WebCore::DocumentLoader> createDocumentLoader(const WebCo re::ResourceRequest&, const WebCore::SubstituteData&);
105 virtual void setTitle(const WTF::String& title, const WebCore::KURL&); 106 virtual void setTitle(const WTF::String& title, const WebCore::KURL&);
106 107
(...skipping 29 matching lines...) Expand all
136 137
137 WebFrame* m_webFrame; 138 WebFrame* m_webFrame;
138 139
139 // Points to the manual loader that data should be redirected to. 140 // Points to the manual loader that data should be redirected to.
140 WebCore::PluginManualLoader* m_manualLoader; 141 WebCore::PluginManualLoader* m_manualLoader;
141 142
142 bool m_hasSentResponseToPlugin; 143 bool m_hasSentResponseToPlugin;
143 }; 144 };
144 145
145 #endif // WebFrameLoaderClient_h 146 #endif // WebFrameLoaderClient_h
OLDNEW
« no previous file with comments | « Source/WebKit/win/ChangeLog ('k') | Source/WebKit/win/WebCoreSupport/WebFrameLoaderClient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698