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

Side by Side Diff: Source/web/WebRemoteFrameImpl.cpp

Issue 285623003: Navigation transitions: Added "addStyleSheetByURL" function to insert stylesheet links. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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
« no previous file with comments | « Source/web/WebRemoteFrameImpl.h ('k') | public/web/WebFrame.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "config.h" 5 #include "config.h"
6 #include "web/WebRemoteFrameImpl.h" 6 #include "web/WebRemoteFrameImpl.h"
7 7
8 #include "public/platform/WebFloatRect.h" 8 #include "public/platform/WebFloatRect.h"
9 #include "public/platform/WebRect.h" 9 #include "public/platform/WebRect.h"
10 #include "public/web/WebDocument.h" 10 #include "public/web/WebDocument.h"
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
523 { 523 {
524 ASSERT_NOT_REACHED(); 524 ASSERT_NOT_REACHED();
525 return false; 525 return false;
526 } 526 }
527 527
528 void WebRemoteFrameImpl::extendSelectionAndDelete(int before, int after) 528 void WebRemoteFrameImpl::extendSelectionAndDelete(int before, int after)
529 { 529 {
530 ASSERT_NOT_REACHED(); 530 ASSERT_NOT_REACHED();
531 } 531 }
532 532
533 void WebRemoteFrameImpl::addStyleSheetByURL(const WebString& url)
534 {
535 ASSERT_NOT_REACHED();
536 }
537
533 void WebRemoteFrameImpl::setCaretVisible(bool) 538 void WebRemoteFrameImpl::setCaretVisible(bool)
534 { 539 {
535 ASSERT_NOT_REACHED(); 540 ASSERT_NOT_REACHED();
536 } 541 }
537 542
538 int WebRemoteFrameImpl::printBegin(const WebPrintParams&, const WebNode& constra inToNode) 543 int WebRemoteFrameImpl::printBegin(const WebPrintParams&, const WebNode& constra inToNode)
539 { 544 {
540 ASSERT_NOT_REACHED(); 545 ASSERT_NOT_REACHED();
541 return 0; 546 return 0;
542 } 547 }
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 } 715 }
711 716
712 WebString WebRemoteFrameImpl::layerTreeAsText(bool showDebugInfo) const 717 WebString WebRemoteFrameImpl::layerTreeAsText(bool showDebugInfo) const
713 { 718 {
714 ASSERT_NOT_REACHED(); 719 ASSERT_NOT_REACHED();
715 return WebString(); 720 return WebString();
716 } 721 }
717 722
718 } // namespace blink 723 } // namespace blink
719 724
OLDNEW
« no previous file with comments | « Source/web/WebRemoteFrameImpl.h ('k') | public/web/WebFrame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698