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

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

Issue 643333002: Prepare for remote->local frame swap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « Source/web/WebFrame.cpp ('k') | Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 virtual WebString contentAsText(size_t maxChars) const override; 214 virtual WebString contentAsText(size_t maxChars) const override;
215 virtual WebString contentAsMarkup() const override; 215 virtual WebString contentAsMarkup() const override;
216 virtual WebString renderTreeAsText(RenderAsTextControls toShow = RenderAsTex tNormal) const override; 216 virtual WebString renderTreeAsText(RenderAsTextControls toShow = RenderAsTex tNormal) const override;
217 virtual WebString markerTextForListItem(const WebElement&) const override; 217 virtual WebString markerTextForListItem(const WebElement&) const override;
218 virtual WebRect selectionBoundsRect() const override; 218 virtual WebRect selectionBoundsRect() const override;
219 219
220 virtual bool selectionStartHasSpellingMarkerFor(int from, int length) const override; 220 virtual bool selectionStartHasSpellingMarkerFor(int from, int length) const override;
221 virtual WebString layerTreeAsText(bool showDebugInfo = false) const override ; 221 virtual WebString layerTreeAsText(bool showDebugInfo = false) const override ;
222 222
223 // WebLocalFrame methods: 223 // WebLocalFrame methods:
224 virtual void initializeToReplaceRemoteFrame(WebRemoteFrame*) override;
224 virtual void sendPings(const WebNode& linkNode, const WebURL& destinationURL ) override; 225 virtual void sendPings(const WebNode& linkNode, const WebURL& destinationURL ) override;
225 virtual bool isLoading() const override; 226 virtual bool isLoading() const override;
226 virtual bool isResourceLoadInProgress() const override; 227 virtual bool isResourceLoadInProgress() const override;
227 virtual void addStyleSheetByURL(const WebString& url) override; 228 virtual void addStyleSheetByURL(const WebString& url) override;
228 virtual void navigateToSandboxedMarkup(const WebData& markup) override; 229 virtual void navigateToSandboxedMarkup(const WebData& markup) override;
229 virtual void sendOrientationChangeEvent() override; 230 virtual void sendOrientationChangeEvent() override;
230 virtual v8::Handle<v8::Value> executeScriptAndReturnValueForTests( 231 virtual v8::Handle<v8::Value> executeScriptAndReturnValueForTests(
231 const WebScriptSource&) override; 232 const WebScriptSource&) override;
232 233
233 void willDetachParent(); 234 void willDetachParent();
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 GC_PLUGIN_IGNORE("340522") 366 GC_PLUGIN_IGNORE("340522")
366 Persistent<WebLocalFrameImpl> m_selfKeepAlive; 367 Persistent<WebLocalFrameImpl> m_selfKeepAlive;
367 #endif 368 #endif
368 }; 369 };
369 370
370 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(), frame.isWebLocalFrame()); 371 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(), frame.isWebLocalFrame());
371 372
372 } // namespace blink 373 } // namespace blink
373 374
374 #endif 375 #endif
OLDNEW
« no previous file with comments | « Source/web/WebFrame.cpp ('k') | Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698