| 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 "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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 ASSERT_NOT_REACHED(); | 236 ASSERT_NOT_REACHED(); |
| 237 return WebDocument(); | 237 return WebDocument(); |
| 238 } | 238 } |
| 239 | 239 |
| 240 WebPerformance WebRemoteFrameImpl::performance() const | 240 WebPerformance WebRemoteFrameImpl::performance() const |
| 241 { | 241 { |
| 242 ASSERT_NOT_REACHED(); | 242 ASSERT_NOT_REACHED(); |
| 243 return WebPerformance(); | 243 return WebPerformance(); |
| 244 } | 244 } |
| 245 | 245 |
| 246 WebURL WebRemoteFrameImpl::manifestURL() const |
| 247 { |
| 248 ASSERT_NOT_REACHED(); |
| 249 return WebURL(); |
| 250 } |
| 251 |
| 246 bool WebRemoteFrameImpl::dispatchBeforeUnloadEvent() | 252 bool WebRemoteFrameImpl::dispatchBeforeUnloadEvent() |
| 247 { | 253 { |
| 248 ASSERT_NOT_REACHED(); | 254 ASSERT_NOT_REACHED(); |
| 249 return false; | 255 return false; |
| 250 } | 256 } |
| 251 | 257 |
| 252 void WebRemoteFrameImpl::dispatchUnloadEvent() | 258 void WebRemoteFrameImpl::dispatchUnloadEvent() |
| 253 { | 259 { |
| 254 ASSERT_NOT_REACHED(); | 260 ASSERT_NOT_REACHED(); |
| 255 } | 261 } |
| (...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 763 } | 769 } |
| 764 | 770 |
| 765 WebString WebRemoteFrameImpl::layerTreeAsText(bool showDebugInfo) const | 771 WebString WebRemoteFrameImpl::layerTreeAsText(bool showDebugInfo) const |
| 766 { | 772 { |
| 767 ASSERT_NOT_REACHED(); | 773 ASSERT_NOT_REACHED(); |
| 768 return WebString(); | 774 return WebString(); |
| 769 } | 775 } |
| 770 | 776 |
| 771 } // namespace blink | 777 } // namespace blink |
| 772 | 778 |
| OLD | NEW |