// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "extensions/browser/api/system_memory/memory_info_provider.h" #include "base/system/sys_info.h" namespace extensions { MemoryInfo; // Static member intialization. base::LazyInstance<scoped_refptr<MemoryInfoProvider>>::DestructorAtExit MemoryInfoProvider::provider_ = …; void MemoryInfoProvider::InitializeForTesting( scoped_refptr<MemoryInfoProvider> provider) { … } bool MemoryInfoProvider::QueryInfo() { … } // static MemoryInfoProvider* MemoryInfoProvider::Get() { … } } // namespace extensions