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

Side by Side Diff: chrome/browser/extensions/api/system_cpu/cpu_info_provider.cc

Issue 501263002: Remove implicit conversions from scoped_refptr to T* in chrome/browser/extensions/api/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Just in case Created 6 years, 3 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
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/extensions/api/system_cpu/cpu_info_provider.h" 5 #include "chrome/browser/extensions/api/system_cpu/cpu_info_provider.h"
6 6
7 #include "base/sys_info.h" 7 #include "base/sys_info.h"
8 8
9 namespace extensions { 9 namespace extensions {
10 10
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 if (cpu_.has_sse41()) features.push_back("sse4_1"); 57 if (cpu_.has_sse41()) features.push_back("sse4_1");
58 if (cpu_.has_sse42()) features.push_back("sse4_2"); 58 if (cpu_.has_sse42()) features.push_back("sse4_2");
59 if (cpu_.has_avx()) features.push_back("avx"); 59 if (cpu_.has_avx()) features.push_back("avx");
60 return features; 60 return features;
61 } 61 }
62 62
63 // static 63 // static
64 CpuInfoProvider* CpuInfoProvider::Get() { 64 CpuInfoProvider* CpuInfoProvider::Get() {
65 if (provider_.Get().get() == NULL) 65 if (provider_.Get().get() == NULL)
66 provider_.Get() = new CpuInfoProvider(); 66 provider_.Get() = new CpuInfoProvider();
67 return provider_.Get(); 67 return provider_.Get().get();
68 } 68 }
69 69
70 } // namespace extensions 70 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698