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

Unified Diff: content/browser/frame_host/interstitial_page_impl.cc

Issue 2867693004: Snapshot of all changes to get jumbo in blink and content.
Patch Set: Rebased again Created 3 years, 5 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 4f1e52aa3f464c641f332760e283ecbae9de9f31..82825b99a0cd2a1fd600e8535876e1bb7e44d0dc 100644
--- a/content/browser/frame_host/interstitial_page_impl.cc
+++ b/content/browser/frame_host/interstitial_page_impl.cc
@@ -429,7 +429,7 @@ void InterstitialPageImpl::Cut() {
return;
focused_node->current_frame_host()->GetFrameInputHandler()->Cut();
- RecordAction(base::UserMetricsAction("Cut"));
+ base::RecordAction(base::UserMetricsAction("Cut"));
}
void InterstitialPageImpl::ExecuteEditCommand(
@@ -450,7 +450,7 @@ void InterstitialPageImpl::Copy() {
return;
focused_node->current_frame_host()->GetFrameInputHandler()->Copy();
- RecordAction(base::UserMetricsAction("Copy"));
+ base::RecordAction(base::UserMetricsAction("Copy"));
}
void InterstitialPageImpl::Paste() {
@@ -459,7 +459,7 @@ void InterstitialPageImpl::Paste() {
return;
focused_node->current_frame_host()->GetFrameInputHandler()->Paste();
- RecordAction(base::UserMetricsAction("Paste"));
+ base::RecordAction(base::UserMetricsAction("Paste"));
}
void InterstitialPageImpl::SelectAll() {
@@ -468,7 +468,7 @@ void InterstitialPageImpl::SelectAll() {
return;
focused_node->current_frame_host()->GetFrameInputHandler()->SelectAll();
- RecordAction(base::UserMetricsAction("SelectAll"));
+ base::RecordAction(base::UserMetricsAction("SelectAll"));
}
RenderViewHostDelegateView* InterstitialPageImpl::GetDelegateView() {
« no previous file with comments | « content/browser/fileapi/fileapi_message_filter.cc ('k') | content/browser/frame_host/render_frame_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698