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

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

Issue 2591803002: NOT FOR LANDING: Thread the needle through all webmodules.
Patch Set: Needle threaded all the way. Created 4 years 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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 477
477 DEFINE_TYPE_CASTS(WebLocalFrameImpl, 478 DEFINE_TYPE_CASTS(WebLocalFrameImpl,
478 WebFrame, 479 WebFrame,
479 frame, 480 frame,
480 frame->isWebLocalFrame(), 481 frame->isWebLocalFrame(),
481 frame.isWebLocalFrame()); 482 frame.isWebLocalFrame());
482 483
483 } // namespace blink 484 } // namespace blink
484 485
485 #endif 486 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698