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

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

Issue 2591803002: NOT FOR LANDING: Thread the needle through all webmodules.
Patch Set: AddEventListener sketched out. Created 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 WebString layerTreeAsText(bool showDebugInfo = false) const override; 231 WebString layerTreeAsText(bool showDebugInfo = false) const override;
232 232
233 WebFrameImplBase* toImplBase() override { return this; } 233 WebFrameImplBase* toImplBase() override { return this; }
234 234
235 // WebLocalFrame methods: 235 // WebLocalFrame methods:
236 void setAutofillClient(WebAutofillClient*) override; 236 void setAutofillClient(WebAutofillClient*) override;
237 WebAutofillClient* autofillClient() override; 237 WebAutofillClient* autofillClient() override;
238 void setDevToolsAgentClient(WebDevToolsAgentClient*) override; 238 void setDevToolsAgentClient(WebDevToolsAgentClient*) override;
239 WebDevToolsAgent* devToolsAgent() override; 239 WebDevToolsAgent* devToolsAgent() override;
240 WebLocalFrameImpl* localRoot() override; 240 WebLocalFrameImpl* localRoot() override;
241 void startAgents() override;
241 void sendPings(const WebURL& destinationURL) override; 242 void sendPings(const WebURL& destinationURL) override;
242 bool dispatchBeforeUnloadEvent(bool) override; 243 bool dispatchBeforeUnloadEvent(bool) override;
243 WebURLRequest requestFromHistoryItem(const WebHistoryItem&, 244 WebURLRequest requestFromHistoryItem(const WebHistoryItem&,
244 WebCachePolicy) const override; 245 WebCachePolicy) const override;
245 WebURLRequest requestForReload(WebFrameLoadType, 246 WebURLRequest requestForReload(WebFrameLoadType,
246 const WebURL&) const override; 247 const WebURL&) const override;
247 void load(const WebURLRequest&, 248 void load(const WebURLRequest&,
248 WebFrameLoadType, 249 WebFrameLoadType,
249 const WebHistoryItem&, 250 const WebHistoryItem&,
250 WebHistoryLoadType, 251 WebHistoryLoadType,
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 496
496 DEFINE_TYPE_CASTS(WebLocalFrameImpl, 497 DEFINE_TYPE_CASTS(WebLocalFrameImpl,
497 WebFrame, 498 WebFrame,
498 frame, 499 frame,
499 frame->isWebLocalFrame(), 500 frame->isWebLocalFrame(),
500 frame.isWebLocalFrame()); 501 frame.isWebLocalFrame());
501 502
502 } // namespace blink 503 } // namespace blink
503 504
504 #endif 505 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/BUILD.gn ('k') | third_party/WebKit/Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698