| Index: chrome/browser/metrics/android_metrics_provider.cc
|
| diff --git a/chrome/browser/metrics/android_metrics_provider.cc b/chrome/browser/metrics/android_metrics_provider.cc
|
| index 24995a3939e9c600d993a0ecf5afa4509afb3d27..c7f89e1f368d9c8ab42f1fed5ac11596193c953c 100644
|
| --- a/chrome/browser/metrics/android_metrics_provider.cc
|
| +++ b/chrome/browser/metrics/android_metrics_provider.cc
|
| @@ -19,7 +19,7 @@ namespace {
|
| void IncrementListValue(base::ListValue* counts, int index) {
|
| int current_count = 0;
|
| counts->GetInteger(index, ¤t_count);
|
| - counts->Set(index, new base::FundamentalValue(current_count + 1));
|
| + counts->Set(index, new base::Value(current_count + 1));
|
| }
|
|
|
| // Takes an int corresponding to a Type and returns the corresponding flag.
|
|
|