OLD | NEW |
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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 void cancelPendingScopingEffort() override; | 247 void cancelPendingScopingEffort() override; |
248 void increaseMatchCount(int count, int identifier) override; | 248 void increaseMatchCount(int count, int identifier) override; |
249 void resetMatchCount() override; | 249 void resetMatchCount() override; |
250 int findMatchMarkersVersion() const override; | 250 int findMatchMarkersVersion() const override; |
251 WebFloatRect activeFindMatchRect() override; | 251 WebFloatRect activeFindMatchRect() override; |
252 void findMatchRects(WebVector<WebFloatRect>&) override; | 252 void findMatchRects(WebVector<WebFloatRect>&) override; |
253 int selectNearestFindMatch(const WebFloatPoint&, WebRect* selectionRect) ove
rride; | 253 int selectNearestFindMatch(const WebFloatPoint&, WebRect* selectionRect) ove
rride; |
254 void setTickmarks(const WebVector<WebRect>&) override; | 254 void setTickmarks(const WebVector<WebRect>&) override; |
255 | 255 |
256 // WebFrameImplBase methods: | 256 // WebFrameImplBase methods: |
257 void initializeCoreFrame(FrameHost*, FrameOwner*, const AtomicString& name,
const AtomicString& fallbackName) override; | 257 void initializeCoreFrame(FrameHost*, FrameOwner*, const AtomicString& name,
const AtomicString& uniqueName) override; |
258 LocalFrame* frame() const override { return m_frame.get(); } | 258 LocalFrame* frame() const override { return m_frame.get(); } |
259 | 259 |
260 void willBeDetached(); | 260 void willBeDetached(); |
261 void willDetachParent(); | 261 void willDetachParent(); |
262 | 262 |
263 static WebLocalFrameImpl* create(WebTreeScopeType, WebFrameClient*); | 263 static WebLocalFrameImpl* create(WebTreeScopeType, WebFrameClient*); |
264 static WebLocalFrameImpl* createProvisional(WebFrameClient*, WebRemoteFrame*
, WebSandboxFlags, const WebFrameOwnerProperties&); | 264 static WebLocalFrameImpl* createProvisional(WebFrameClient*, WebRemoteFrame*
, WebSandboxFlags, const WebFrameOwnerProperties&); |
265 ~WebLocalFrameImpl() override; | 265 ~WebLocalFrameImpl() override; |
266 | 266 |
267 PassRefPtrWillBeRawPtr<LocalFrame> createChildFrame(const FrameLoadRequest&,
const AtomicString& name, HTMLFrameOwnerElement*); | 267 PassRefPtrWillBeRawPtr<LocalFrame> createChildFrame(const FrameLoadRequest&,
const AtomicString& name, HTMLFrameOwnerElement*); |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 // cleared upon close(). | 410 // cleared upon close(). |
411 SelfKeepAlive<WebLocalFrameImpl> m_selfKeepAlive; | 411 SelfKeepAlive<WebLocalFrameImpl> m_selfKeepAlive; |
412 #endif | 412 #endif |
413 }; | 413 }; |
414 | 414 |
415 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); | 415 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); |
416 | 416 |
417 } // namespace blink | 417 } // namespace blink |
418 | 418 |
419 #endif | 419 #endif |
OLD | NEW |