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

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

Issue 2764773003: Change WebFrameImplBase::initializeCoreFrame to take a Page& (Closed)
Patch Set: Rebase Created 3 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 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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 base::SingleThreadTaskRunner* timerTaskRunner() override; 307 base::SingleThreadTaskRunner* timerTaskRunner() override;
308 base::SingleThreadTaskRunner* loadingTaskRunner() override; 308 base::SingleThreadTaskRunner* loadingTaskRunner() override;
309 base::SingleThreadTaskRunner* unthrottledTaskRunner() override; 309 base::SingleThreadTaskRunner* unthrottledTaskRunner() override;
310 WebInputMethodControllerImpl* inputMethodController() const override; 310 WebInputMethodControllerImpl* inputMethodController() const override;
311 311
312 void extractSmartClipData(WebRect rectInViewport, 312 void extractSmartClipData(WebRect rectInViewport,
313 WebString& clipText, 313 WebString& clipText,
314 WebString& clipHtml) override; 314 WebString& clipHtml) override;
315 315
316 // WebFrameImplBase methods: 316 // WebFrameImplBase methods:
317 void initializeCoreFrame(FrameHost*, 317 void initializeCoreFrame(Page&,
318 FrameOwner*, 318 FrameOwner*,
319 const AtomicString& name) override; 319 const AtomicString& name) override;
320 LocalFrame* frame() const override { return m_frame.get(); } 320 LocalFrame* frame() const override { return m_frame.get(); }
321 321
322 void willBeDetached(); 322 void willBeDetached();
323 void willDetachParent(); 323 void willDetachParent();
324 324
325 static WebLocalFrameImpl* create(WebTreeScopeType, 325 static WebLocalFrameImpl* create(WebTreeScopeType,
326 WebFrameClient*, 326 WebFrameClient*,
327 blink::InterfaceProvider*, 327 blink::InterfaceProvider*,
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
505 505
506 DEFINE_TYPE_CASTS(WebLocalFrameImpl, 506 DEFINE_TYPE_CASTS(WebLocalFrameImpl,
507 WebFrame, 507 WebFrame,
508 frame, 508 frame,
509 frame->isWebLocalFrame(), 509 frame->isWebLocalFrame(),
510 frame.isWebLocalFrame()); 510 frame.isWebLocalFrame());
511 511
512 } // namespace blink 512 } // namespace blink
513 513
514 #endif 514 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebFrameImplBase.h ('k') | third_party/WebKit/Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698