OLD | NEW |
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 "core/frame/RemoteFrame.h" | 8 #include "core/frame/RemoteFrame.h" |
9 #include "public/platform/WebFloatRect.h" | 9 #include "public/platform/WebFloatRect.h" |
10 #include "public/platform/WebRect.h" | 10 #include "public/platform/WebRect.h" |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 void WebRemoteFrameImpl::setPermissionClient(WebPermissionClient*) | 91 void WebRemoteFrameImpl::setPermissionClient(WebPermissionClient*) |
92 { | 92 { |
93 ASSERT_NOT_REACHED(); | 93 ASSERT_NOT_REACHED(); |
94 } | 94 } |
95 | 95 |
96 void WebRemoteFrameImpl::setSharedWorkerRepositoryClient(WebSharedWorkerReposito
ryClient*) | 96 void WebRemoteFrameImpl::setSharedWorkerRepositoryClient(WebSharedWorkerReposito
ryClient*) |
97 { | 97 { |
98 ASSERT_NOT_REACHED(); | 98 ASSERT_NOT_REACHED(); |
99 } | 99 } |
100 | 100 |
| 101 WebColor WebRemoteFrameImpl::brandColor() const |
| 102 { |
| 103 ASSERT_NOT_REACHED(); |
| 104 return WebColor(); |
| 105 } |
| 106 |
101 void WebRemoteFrameImpl::setCanHaveScrollbars(bool) | 107 void WebRemoteFrameImpl::setCanHaveScrollbars(bool) |
102 { | 108 { |
103 ASSERT_NOT_REACHED(); | 109 ASSERT_NOT_REACHED(); |
104 } | 110 } |
105 | 111 |
106 WebSize WebRemoteFrameImpl::scrollOffset() const | 112 WebSize WebRemoteFrameImpl::scrollOffset() const |
107 { | 113 { |
108 ASSERT_NOT_REACHED(); | 114 ASSERT_NOT_REACHED(); |
109 return WebSize(); | 115 return WebSize(); |
110 } | 116 } |
(...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
716 return false; | 722 return false; |
717 } | 723 } |
718 | 724 |
719 WebString WebRemoteFrameImpl::layerTreeAsText(bool showDebugInfo) const | 725 WebString WebRemoteFrameImpl::layerTreeAsText(bool showDebugInfo) const |
720 { | 726 { |
721 ASSERT_NOT_REACHED(); | 727 ASSERT_NOT_REACHED(); |
722 return WebString(); | 728 return WebString(); |
723 } | 729 } |
724 | 730 |
725 } // namespace blink | 731 } // namespace blink |
726 | |
OLD | NEW |