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

Side by Side Diff: content/browser/user_metrics.cc

Issue 2771233002: Remove the wrapper functions content::RecordAction et al (Closed)
Patch Set: Rebased Created 3 years, 8 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
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "content/public/browser/user_metrics.h"
6
7 #include <vector>
8
9 #include "base/bind.h"
10 #include "base/metrics/user_metrics.h"
11 #include "content/public/browser/browser_thread.h"
12
13 namespace content {
14
15 void RecordAction(const base::UserMetricsAction& action) {
16 base::RecordAction(action);
17 }
18
19 void RecordComputedAction(const std::string& action) {
20 base::RecordComputedAction(action);
21 }
22
23 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698