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

Side by Side Diff: third_party/WebKit/Source/core/loader/FrameLoaderClient.h

Issue 1958543002: requestAutocomplete: remove from web platform (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Document-createEvent-expected.txt Created 4 years, 7 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, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
3 * Copyright (C) 2012 Google Inc. All rights reserved. 3 * Copyright (C) 2012 Google 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 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 virtual void didUpdateToUniqueOrigin() {} 218 virtual void didUpdateToUniqueOrigin() {}
219 219
220 virtual void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) { } 220 virtual void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) { }
221 221
222 virtual void didChangeFrameOwnerProperties(HTMLFrameElementBase*) { } 222 virtual void didChangeFrameOwnerProperties(HTMLFrameElementBase*) { }
223 223
224 virtual void dispatchWillOpenWebSocket(WebSocketHandle*) { } 224 virtual void dispatchWillOpenWebSocket(WebSocketHandle*) { }
225 225
226 virtual void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectio nHandler*) { } 226 virtual void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectio nHandler*) { }
227 227
228 virtual void didRequestAutocomplete(HTMLFormElement*) = 0;
229
230 virtual bool allowWebGL(bool enabledPerSettings) { return enabledPerSettings ; } 228 virtual bool allowWebGL(bool enabledPerSettings) { return enabledPerSettings ; }
231 229
232 // If an HTML document is being loaded, informs the embedder that the docume nt will have its <body> attached soon. 230 // If an HTML document is being loaded, informs the embedder that the docume nt will have its <body> attached soon.
233 virtual void dispatchWillInsertBody() { } 231 virtual void dispatchWillInsertBody() { }
234 232
235 virtual void dispatchDidChangeResourcePriority(unsigned long identifier, Res ourceLoadPriority, int intraPriorityValue) { } 233 virtual void dispatchDidChangeResourcePriority(unsigned long identifier, Res ourceLoadPriority, int intraPriorityValue) { }
236 234
237 virtual PassOwnPtr<WebServiceWorkerProvider> createServiceWorkerProvider() = 0; 235 virtual PassOwnPtr<WebServiceWorkerProvider> createServiceWorkerProvider() = 0;
238 236
239 virtual bool isControlledByServiceWorker(DocumentLoader&) = 0; 237 virtual bool isControlledByServiceWorker(DocumentLoader&) = 0;
(...skipping 18 matching lines...) Expand all
258 UnloadHandler, 256 UnloadHandler,
259 }; 257 };
260 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio nDisablerType) { } 258 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio nDisablerType) { }
261 259
262 virtual LinkResource* createServiceWorkerLinkResource(HTMLLinkElement*) { re turn nullptr; } 260 virtual LinkResource* createServiceWorkerLinkResource(HTMLLinkElement*) { re turn nullptr; }
263 }; 261 };
264 262
265 } // namespace blink 263 } // namespace blink
266 264
267 #endif // FrameLoaderClient_h 265 #endif // FrameLoaderClient_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/EmptyClients.cpp ('k') | third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698