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

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

Issue 1747283003: Remove redundant codepath for webgl api blocking (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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) 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override; 156 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override;
157 void didChangeFrameOwnerProperties(HTMLFrameElementBase*) override; 157 void didChangeFrameOwnerProperties(HTMLFrameElementBase*) override;
158 158
159 void dispatchWillOpenWebSocket(WebSocketHandle*) override; 159 void dispatchWillOpenWebSocket(WebSocketHandle*) override;
160 160
161 void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler *) override; 161 void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler *) override;
162 162
163 void didRequestAutocomplete(HTMLFormElement*) override; 163 void didRequestAutocomplete(HTMLFormElement*) override;
164 164
165 bool allowWebGL(bool enabledPerSettings) override; 165 bool allowWebGL(bool enabledPerSettings) override;
166 void didLoseWebGLContext(int arbRobustnessContextLostReason) override;
167 166
168 void dispatchWillInsertBody() override; 167 void dispatchWillInsertBody() override;
169 168
170 v8::Local<v8::Value> createTestInterface(const AtomicString& name) override; 169 v8::Local<v8::Value> createTestInterface(const AtomicString& name) override;
171 170
172 PassOwnPtr<WebServiceWorkerProvider> createServiceWorkerProvider() override; 171 PassOwnPtr<WebServiceWorkerProvider> createServiceWorkerProvider() override;
173 bool isControlledByServiceWorker(DocumentLoader&) override; 172 bool isControlledByServiceWorker(DocumentLoader&) override;
174 int64_t serviceWorkerID(DocumentLoader&) override; 173 int64_t serviceWorkerID(DocumentLoader&) override;
175 SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() override; 174 SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() override;
176 175
(...skipping 19 matching lines...) Expand all
196 Member<WebLocalFrameImpl> m_webFrame; 195 Member<WebLocalFrameImpl> m_webFrame;
197 196
198 String m_userAgent; 197 String m_userAgent;
199 }; 198 };
200 199
201 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); 200 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl());
202 201
203 } // namespace blink 202 } // namespace blink
204 203
205 #endif 204 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698