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

Side by Side Diff: Source/web/FrameLoaderClientImpl.h

Issue 295063002: [NotLanded] Implement the fetching algorithm of the Web Manifest. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: review comments Created 6 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
« no previous file with comments | « Source/core/loader/ManifestLoader.cpp ('k') | Source/web/FrameLoaderClientImpl.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) 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 virtual void dispatchWillInsertBody() OVERRIDE; 158 virtual void dispatchWillInsertBody() OVERRIDE;
159 159
160 virtual PassOwnPtr<WebServiceWorkerProvider> createServiceWorkerProvider() O VERRIDE; 160 virtual PassOwnPtr<WebServiceWorkerProvider> createServiceWorkerProvider() O VERRIDE;
161 virtual SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() OVERRID E; 161 virtual SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() OVERRID E;
162 162
163 virtual PassOwnPtr<WebApplicationCacheHost> createApplicationCacheHost(WebAp plicationCacheHostClient*) OVERRIDE; 163 virtual PassOwnPtr<WebApplicationCacheHost> createApplicationCacheHost(WebAp plicationCacheHostClient*) OVERRIDE;
164 164
165 virtual void didStopAllLoaders() OVERRIDE; 165 virtual void didStopAllLoaders() OVERRIDE;
166 166
167 virtual void dispatchDidChangeManifest() OVERRIDE; 167 virtual void dispatchDidChangeManifest() OVERRIDE;
168 virtual void dispatchDidLoadManifest(const WebManifest&) OVERRIDE;
169 virtual void dispatchDidFailLoadManifest(WebManifestError) OVERRIDE;
168 170
169 private: 171 private:
170 virtual bool isFrameLoaderClientImpl() const OVERRIDE { return true; } 172 virtual bool isFrameLoaderClientImpl() const OVERRIDE { return true; }
171 173
172 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver(DocumentLoader*); 174 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver(DocumentLoader*);
173 175
174 // The WebFrame that owns this object and manages its lifetime. Therefore, 176 // The WebFrame that owns this object and manages its lifetime. Therefore,
175 // the web frame object is guaranteed to exist. 177 // the web frame object is guaranteed to exist.
176 WebLocalFrameImpl* m_webFrame; 178 WebLocalFrameImpl* m_webFrame;
177 }; 179 };
178 180
179 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); 181 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl());
180 182
181 } // namespace blink 183 } // namespace blink
182 184
183 #endif 185 #endif
OLDNEW
« no previous file with comments | « Source/core/loader/ManifestLoader.cpp ('k') | Source/web/FrameLoaderClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698