| Index: content/browser/user_metrics.cc
|
| diff --git a/content/browser/user_metrics.cc b/content/browser/user_metrics.cc
|
| index 200c851ccb170a20d8e51486b7bcd286fc70ec98..175825c06948a1f9c3ea3d3848a3ec34e424a0f6 100644
|
| --- a/content/browser/user_metrics.cc
|
| +++ b/content/browser/user_metrics.cc
|
| @@ -13,26 +13,10 @@
|
| namespace content {
|
|
|
| void RecordAction(const base::UserMetricsAction& action) {
|
| - if (!BrowserThread::CurrentlyOn(BrowserThread::UI)) {
|
| - BrowserThread::PostTask(
|
| - BrowserThread::UI,
|
| - FROM_HERE,
|
| - base::Bind(&RecordAction, action));
|
| - return;
|
| - }
|
| -
|
| base::RecordAction(action);
|
| }
|
|
|
| void RecordComputedAction(const std::string& action) {
|
| - if (!BrowserThread::CurrentlyOn(BrowserThread::UI)) {
|
| - BrowserThread::PostTask(
|
| - BrowserThread::UI,
|
| - FROM_HERE,
|
| - base::Bind(&RecordComputedAction, action));
|
| - return;
|
| - }
|
| -
|
| base::RecordComputedAction(action);
|
| }
|
|
|
|
|