| 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 "web/WebRemoteFrameImpl.h" | 5 #include "web/WebRemoteFrameImpl.h" |
| 6 | 6 |
| 7 #include "core/dom/Fullscreen.h" | 7 #include "core/dom/Fullscreen.h" |
| 8 #include "core/dom/RemoteSecurityContext.h" | 8 #include "core/dom/RemoteSecurityContext.h" |
| 9 #include "core/dom/SecurityContext.h" | 9 #include "core/dom/SecurityContext.h" |
| 10 #include "core/frame/FrameView.h" | 10 #include "core/frame/FrameView.h" |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 NOTREACHED(); | 319 NOTREACHED(); |
| 320 return nullptr; | 320 return nullptr; |
| 321 } | 321 } |
| 322 | 322 |
| 323 unsigned WebRemoteFrameImpl::unloadListenerCount() const | 323 unsigned WebRemoteFrameImpl::unloadListenerCount() const |
| 324 { | 324 { |
| 325 NOTREACHED(); | 325 NOTREACHED(); |
| 326 return 0; | 326 return 0; |
| 327 } | 327 } |
| 328 | 328 |
| 329 void WebRemoteFrameImpl::insertText(const WebString&) | |
| 330 { | |
| 331 NOTREACHED(); | |
| 332 } | |
| 333 | |
| 334 void WebRemoteFrameImpl::setMarkedText(const WebString&, unsigned location, unsi
gned length) | |
| 335 { | |
| 336 NOTREACHED(); | |
| 337 } | |
| 338 | |
| 339 void WebRemoteFrameImpl::unmarkText() | |
| 340 { | |
| 341 NOTREACHED(); | |
| 342 } | |
| 343 | |
| 344 bool WebRemoteFrameImpl::hasMarkedText() const | |
| 345 { | |
| 346 NOTREACHED(); | |
| 347 return false; | |
| 348 } | |
| 349 | |
| 350 WebRange WebRemoteFrameImpl::markedRange() const | |
| 351 { | |
| 352 NOTREACHED(); | |
| 353 return WebRange(); | |
| 354 } | |
| 355 | |
| 356 bool WebRemoteFrameImpl::firstRectForCharacterRange(unsigned location, unsigned
length, WebRect&) const | |
| 357 { | |
| 358 NOTREACHED(); | |
| 359 return false; | |
| 360 } | |
| 361 | |
| 362 size_t WebRemoteFrameImpl::characterIndexForPoint(const WebPoint&) const | |
| 363 { | |
| 364 NOTREACHED(); | |
| 365 return 0; | |
| 366 } | |
| 367 | |
| 368 bool WebRemoteFrameImpl::executeCommand(const WebString&) | |
| 369 { | |
| 370 NOTREACHED(); | |
| 371 return false; | |
| 372 } | |
| 373 | |
| 374 bool WebRemoteFrameImpl::executeCommand(const WebString&, const WebString& value
) | |
| 375 { | |
| 376 NOTREACHED(); | |
| 377 return false; | |
| 378 } | |
| 379 | |
| 380 bool WebRemoteFrameImpl::isCommandEnabled(const WebString&) const | |
| 381 { | |
| 382 NOTREACHED(); | |
| 383 return false; | |
| 384 } | |
| 385 | |
| 386 void WebRemoteFrameImpl::enableContinuousSpellChecking(bool) | |
| 387 { | |
| 388 } | |
| 389 | |
| 390 bool WebRemoteFrameImpl::isContinuousSpellCheckingEnabled() const | |
| 391 { | |
| 392 return false; | |
| 393 } | |
| 394 | |
| 395 void WebRemoteFrameImpl::requestTextChecking(const WebElement&) | |
| 396 { | |
| 397 NOTREACHED(); | |
| 398 } | |
| 399 | |
| 400 void WebRemoteFrameImpl::removeSpellingMarkers() | |
| 401 { | |
| 402 NOTREACHED(); | |
| 403 } | |
| 404 | |
| 405 bool WebRemoteFrameImpl::hasSelection() const | |
| 406 { | |
| 407 NOTREACHED(); | |
| 408 return false; | |
| 409 } | |
| 410 | |
| 411 WebRange WebRemoteFrameImpl::selectionRange() const | |
| 412 { | |
| 413 NOTREACHED(); | |
| 414 return WebRange(); | |
| 415 } | |
| 416 | |
| 417 WebString WebRemoteFrameImpl::selectionAsText() const | |
| 418 { | |
| 419 NOTREACHED(); | |
| 420 return WebString(); | |
| 421 } | |
| 422 | |
| 423 WebString WebRemoteFrameImpl::selectionAsMarkup() const | |
| 424 { | |
| 425 NOTREACHED(); | |
| 426 return WebString(); | |
| 427 } | |
| 428 | |
| 429 bool WebRemoteFrameImpl::selectWordAroundCaret() | |
| 430 { | |
| 431 NOTREACHED(); | |
| 432 return false; | |
| 433 } | |
| 434 | |
| 435 void WebRemoteFrameImpl::selectRange(const WebPoint& base, const WebPoint& exten
t) | |
| 436 { | |
| 437 NOTREACHED(); | |
| 438 } | |
| 439 | |
| 440 void WebRemoteFrameImpl::selectRange(const WebRange&) | |
| 441 { | |
| 442 NOTREACHED(); | |
| 443 } | |
| 444 | |
| 445 void WebRemoteFrameImpl::moveRangeSelection(const WebPoint& base, const WebPoint
& extent, WebFrame::TextGranularity granularity) | |
| 446 { | |
| 447 NOTREACHED(); | |
| 448 } | |
| 449 | |
| 450 void WebRemoteFrameImpl::moveCaretSelection(const WebPoint&) | |
| 451 { | |
| 452 NOTREACHED(); | |
| 453 } | |
| 454 | |
| 455 bool WebRemoteFrameImpl::setEditableSelectionOffsets(int start, int end) | |
| 456 { | |
| 457 NOTREACHED(); | |
| 458 return false; | |
| 459 } | |
| 460 | |
| 461 bool WebRemoteFrameImpl::setCompositionFromExistingText(int compositionStart, in
t compositionEnd, const WebVector<WebCompositionUnderline>& underlines) | |
| 462 { | |
| 463 NOTREACHED(); | |
| 464 return false; | |
| 465 } | |
| 466 | |
| 467 void WebRemoteFrameImpl::extendSelectionAndDelete(int before, int after) | |
| 468 { | |
| 469 NOTREACHED(); | |
| 470 } | |
| 471 | |
| 472 void WebRemoteFrameImpl::setCaretVisible(bool) | |
| 473 { | |
| 474 NOTREACHED(); | |
| 475 } | |
| 476 | |
| 477 int WebRemoteFrameImpl::printBegin(const WebPrintParams&, const WebNode& constra
inToNode) | 329 int WebRemoteFrameImpl::printBegin(const WebPrintParams&, const WebNode& constra
inToNode) |
| 478 { | 330 { |
| 479 NOTREACHED(); | 331 NOTREACHED(); |
| 480 return 0; | 332 return 0; |
| 481 } | 333 } |
| 482 | 334 |
| 483 float WebRemoteFrameImpl::printPage(int pageToPrint, WebCanvas*) | 335 float WebRemoteFrameImpl::printPage(int pageToPrint, WebCanvas*) |
| 484 { | 336 { |
| 485 NOTREACHED(); | 337 NOTREACHED(); |
| 486 return 0.0; | 338 return 0.0; |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 697 | 549 |
| 698 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, WebRemoteFrameCli
ent* client) | 550 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, WebRemoteFrameCli
ent* client) |
| 699 : WebRemoteFrame(scope) | 551 : WebRemoteFrame(scope) |
| 700 , m_frameClient(RemoteFrameClientImpl::create(this)) | 552 , m_frameClient(RemoteFrameClientImpl::create(this)) |
| 701 , m_client(client) | 553 , m_client(client) |
| 702 , m_selfKeepAlive(this) | 554 , m_selfKeepAlive(this) |
| 703 { | 555 { |
| 704 } | 556 } |
| 705 | 557 |
| 706 } // namespace blink | 558 } // namespace blink |
| OLD | NEW |