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

Side by Side Diff: content/browser/frame_host/interstitial_page_impl.cc

Issue 1162373002: Make some editing/selection functions accessible to c/b/renderer_host/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added some unit tests Created 5 years, 6 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "content/browser/frame_host/interstitial_page_impl.h" 5 #include "content/browser/frame_host/interstitial_page_impl.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 11 matching lines...) Expand all
22 #include "content/browser/loader/resource_dispatcher_host_impl.h" 22 #include "content/browser/loader/resource_dispatcher_host_impl.h"
23 #include "content/browser/renderer_host/render_process_host_impl.h" 23 #include "content/browser/renderer_host/render_process_host_impl.h"
24 #include "content/browser/renderer_host/render_view_host_delegate_view.h" 24 #include "content/browser/renderer_host/render_view_host_delegate_view.h"
25 #include "content/browser/renderer_host/render_view_host_factory.h" 25 #include "content/browser/renderer_host/render_view_host_factory.h"
26 #include "content/browser/renderer_host/render_view_host_impl.h" 26 #include "content/browser/renderer_host/render_view_host_impl.h"
27 #include "content/browser/renderer_host/render_widget_host_view_base.h" 27 #include "content/browser/renderer_host/render_widget_host_view_base.h"
28 #include "content/browser/site_instance_impl.h" 28 #include "content/browser/site_instance_impl.h"
29 #include "content/browser/web_contents/web_contents_impl.h" 29 #include "content/browser/web_contents/web_contents_impl.h"
30 #include "content/browser/web_contents/web_contents_view.h" 30 #include "content/browser/web_contents/web_contents_view.h"
31 #include "content/common/frame_messages.h" 31 #include "content/common/frame_messages.h"
32 #include "content/common/input_messages.h"
32 #include "content/common/view_messages.h" 33 #include "content/common/view_messages.h"
33 #include "content/public/browser/browser_context.h" 34 #include "content/public/browser/browser_context.h"
34 #include "content/public/browser/browser_thread.h" 35 #include "content/public/browser/browser_thread.h"
35 #include "content/public/browser/content_browser_client.h" 36 #include "content/public/browser/content_browser_client.h"
36 #include "content/public/browser/dom_operation_notification_details.h" 37 #include "content/public/browser/dom_operation_notification_details.h"
37 #include "content/public/browser/interstitial_page_delegate.h" 38 #include "content/public/browser/interstitial_page_delegate.h"
38 #include "content/public/browser/invalidate_type.h" 39 #include "content/public/browser/invalidate_type.h"
39 #include "content/public/browser/notification_service.h" 40 #include "content/public/browser/notification_service.h"
40 #include "content/public/browser/notification_source.h" 41 #include "content/public/browser/notification_source.h"
41 #include "content/public/browser/storage_partition.h" 42 #include "content/public/browser/storage_partition.h"
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 controller_->delegate()->NotifyNavigationStateChanged(INVALIDATE_TYPE_TITLE); 417 controller_->delegate()->NotifyNavigationStateChanged(INVALIDATE_TYPE_TITLE);
417 } 418 }
418 419
419 AccessibilityMode InterstitialPageImpl::GetAccessibilityMode() const { 420 AccessibilityMode InterstitialPageImpl::GetAccessibilityMode() const {
420 if (web_contents_) 421 if (web_contents_)
421 return static_cast<WebContentsImpl*>(web_contents_)->GetAccessibilityMode(); 422 return static_cast<WebContentsImpl*>(web_contents_)->GetAccessibilityMode();
422 else 423 else
423 return AccessibilityModeOff; 424 return AccessibilityModeOff;
424 } 425 }
425 426
427 void InterstitialPageImpl::Cut() {
428 FrameTreeNode* focused_node = frame_tree_.GetFocusedFrame();
429 RenderFrameHostImpl* focused_frame =
430 focused_node ? focused_node->current_frame_host() : nullptr;
431 if (!focused_frame)
432 return;
433
434 focused_frame->Send(new InputMsg_Cut(focused_frame->GetRoutingID()));
435 RecordAction(base::UserMetricsAction("Cut"));
436 }
437
438 void InterstitialPageImpl::Copy() {
439 FrameTreeNode* focused_node = frame_tree_.GetFocusedFrame();
440 RenderFrameHostImpl* focused_frame =
441 focused_node ? focused_node->current_frame_host() : nullptr;
442 if (!focused_frame)
443 return;
444
445 focused_frame->Send(new InputMsg_Copy(focused_frame->GetRoutingID()));
446 RecordAction(base::UserMetricsAction("Copy"));
447 }
448
449 void InterstitialPageImpl::Paste() {
450 FrameTreeNode* focused_node = frame_tree_.GetFocusedFrame();
451 RenderFrameHostImpl* focused_frame =
452 focused_node ? focused_node->current_frame_host() : nullptr;
453 if (!focused_frame)
454 return;
455
456 focused_frame->Send(new InputMsg_Paste(focused_frame->GetRoutingID()));
457 RecordAction(base::UserMetricsAction("Paste"));
458 }
459
426 RenderViewHostDelegateView* InterstitialPageImpl::GetDelegateView() { 460 RenderViewHostDelegateView* InterstitialPageImpl::GetDelegateView() {
427 return rvh_delegate_view_.get(); 461 return rvh_delegate_view_.get();
428 } 462 }
429 463
430 const GURL& InterstitialPageImpl::GetMainFrameLastCommittedURL() const { 464 const GURL& InterstitialPageImpl::GetMainFrameLastCommittedURL() const {
431 return url_; 465 return url_;
432 } 466 }
433 467
434 void InterstitialPageImpl::RenderViewTerminated( 468 void InterstitialPageImpl::RenderViewTerminated(
435 RenderViewHost* render_view_host, 469 RenderViewHost* render_view_host,
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after
895 void InterstitialPageImpl::UnderlyingContentObserver::NavigationEntryCommitted( 929 void InterstitialPageImpl::UnderlyingContentObserver::NavigationEntryCommitted(
896 const LoadCommittedDetails& load_details) { 930 const LoadCommittedDetails& load_details) {
897 interstitial_->OnNavigatingAwayOrTabClosing(); 931 interstitial_->OnNavigatingAwayOrTabClosing();
898 } 932 }
899 933
900 void InterstitialPageImpl::UnderlyingContentObserver::WebContentsDestroyed() { 934 void InterstitialPageImpl::UnderlyingContentObserver::WebContentsDestroyed() {
901 interstitial_->OnNavigatingAwayOrTabClosing(); 935 interstitial_->OnNavigatingAwayOrTabClosing();
902 } 936 }
903 937
904 } // namespace content 938 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698