| 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() {
|
|
|