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

Side by Side Diff: third_party/WebKit/Source/web/FrameLoaderClientImpl.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) 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 void didChangeName(const String& name, const String& uniqueName) override; 154 void didChangeName(const String& name, const String& uniqueName) override;
155 void didEnforceStrictMixedContentChecking() override; 155 void didEnforceStrictMixedContentChecking() override;
156 void didUpdateToUniqueOrigin() override; 156 void didUpdateToUniqueOrigin() override;
157 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override; 157 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override;
158 void didChangeFrameOwnerProperties(HTMLFrameElementBase*) override; 158 void didChangeFrameOwnerProperties(HTMLFrameElementBase*) override;
159 159
160 void dispatchWillOpenWebSocket(WebSocketHandle*) override; 160 void dispatchWillOpenWebSocket(WebSocketHandle*) override;
161 161
162 void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler *) override; 162 void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler *) override;
163 163
164 void didRequestAutocomplete(HTMLFormElement*) override;
165
166 bool allowWebGL(bool enabledPerSettings) override; 164 bool allowWebGL(bool enabledPerSettings) override;
167 165
168 void dispatchWillInsertBody() override; 166 void dispatchWillInsertBody() override;
169 167
170 PassOwnPtr<WebServiceWorkerProvider> createServiceWorkerProvider() override; 168 PassOwnPtr<WebServiceWorkerProvider> createServiceWorkerProvider() override;
171 bool isControlledByServiceWorker(DocumentLoader&) override; 169 bool isControlledByServiceWorker(DocumentLoader&) override;
172 int64_t serviceWorkerID(DocumentLoader&) override; 170 int64_t serviceWorkerID(DocumentLoader&) override;
173 SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() override; 171 SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() override;
174 172
175 PassOwnPtr<WebApplicationCacheHost> createApplicationCacheHost(WebApplicatio nCacheHostClient*) override; 173 PassOwnPtr<WebApplicationCacheHost> createApplicationCacheHost(WebApplicatio nCacheHostClient*) override;
(...skipping 18 matching lines...) Expand all
194 Member<WebLocalFrameImpl> m_webFrame; 192 Member<WebLocalFrameImpl> m_webFrame;
195 193
196 String m_userAgent; 194 String m_userAgent;
197 }; 195 };
198 196
199 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); 197 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl());
200 198
201 } // namespace blink 199 } // namespace blink
202 200
203 #endif 201 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/AssertMatchingEnums.cpp ('k') | third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698