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

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

Issue 161213003: Fix layering of ApplicationCacheHost (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: The real thing Created 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/web/ApplicationCacheHostInternal.h ('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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 virtual void didRequestAutocomplete(PassRefPtr<WebCore::FormState>) OVERRIDE ; 143 virtual void didRequestAutocomplete(PassRefPtr<WebCore::FormState>) OVERRIDE ;
144 144
145 virtual bool allowWebGL(bool enabledPerSettings) OVERRIDE; 145 virtual bool allowWebGL(bool enabledPerSettings) OVERRIDE;
146 virtual void didLoseWebGLContext(int arbRobustnessContextLostReason) OVERRID E; 146 virtual void didLoseWebGLContext(int arbRobustnessContextLostReason) OVERRID E;
147 147
148 virtual void dispatchWillInsertBody() OVERRIDE; 148 virtual void dispatchWillInsertBody() OVERRIDE;
149 149
150 virtual PassOwnPtr<WebServiceWorkerProvider> createServiceWorkerProvider(Pas sOwnPtr<WebServiceWorkerProviderClient>) OVERRIDE; 150 virtual PassOwnPtr<WebServiceWorkerProvider> createServiceWorkerProvider(Pas sOwnPtr<WebServiceWorkerProviderClient>) OVERRIDE;
151 virtual WebCore::SharedWorkerRepositoryClient* sharedWorkerRepositoryClient( ) OVERRIDE; 151 virtual WebCore::SharedWorkerRepositoryClient* sharedWorkerRepositoryClient( ) OVERRIDE;
152 152
153 virtual PassOwnPtr<WebApplicationCacheHost> createApplicationCacheHost(WebAp plicationCacheHostClient*) OVERRIDE;
154
153 virtual void didStopAllLoaders() OVERRIDE; 155 virtual void didStopAllLoaders() OVERRIDE;
154 156
155 private: 157 private:
156 virtual bool isFrameLoaderClientImpl() const OVERRIDE { return true; } 158 virtual bool isFrameLoaderClientImpl() const OVERRIDE { return true; }
157 159
158 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver(WebCore::DocumentLoader *); 160 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver(WebCore::DocumentLoader *);
159 161
160 // The WebFrame that owns this object and manages its lifetime. Therefore, 162 // The WebFrame that owns this object and manages its lifetime. Therefore,
161 // the web frame object is guaranteed to exist. 163 // the web frame object is guaranteed to exist.
162 WebFrameImpl* m_webFrame; 164 WebFrameImpl* m_webFrame;
163 }; 165 };
164 166
165 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, WebCore::FrameLoaderClient, client, cli ent->isFrameLoaderClientImpl(), client.isFrameLoaderClientImpl()); 167 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, WebCore::FrameLoaderClient, client, cli ent->isFrameLoaderClientImpl(), client.isFrameLoaderClientImpl());
166 168
167 } // namespace blink 169 } // namespace blink
168 170
169 #endif 171 #endif
OLDNEW
« no previous file with comments | « Source/web/ApplicationCacheHostInternal.h ('k') | Source/web/FrameLoaderClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698