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

Unified 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: Addressed nasko@'s comments 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/frame_host/interstitial_page_impl.cc
diff --git a/content/browser/frame_host/interstitial_page_impl.cc b/content/browser/frame_host/interstitial_page_impl.cc
index 455ac74ebe69af1b12b14baa007d0263557c2beb..2412945eacddabd48a701a23c65428a2f30bc8b5 100644
--- a/content/browser/frame_host/interstitial_page_impl.cc
+++ b/content/browser/frame_host/interstitial_page_impl.cc
@@ -422,6 +422,15 @@ AccessibilityMode InterstitialPageImpl::GetAccessibilityMode() const {
return AccessibilityModeOff;
}
+void InterstitialPageImpl::Cut() {
nasko 2015/06/05 00:14:38 I think these methods will need to actually have b
mohsen 2015/06/05 02:02:10 Done.
+}
+
+void InterstitialPageImpl::Copy() {
+}
+
+void InterstitialPageImpl::Paste() {
+}
+
RenderViewHostDelegateView* InterstitialPageImpl::GetDelegateView() {
return rvh_delegate_view_.get();
}

Powered by Google App Engine
This is Rietveld 408576698