| OLD | NEW | 
|---|
| (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/browser/mock_resource_context.h" | 
|  | 6 | 
|  | 7 #include "base/lazy_instance.h" | 
|  | 8 | 
|  | 9 namespace content { | 
|  | 10 | 
|  | 11 static base::LazyInstance<MockResourceContext> | 
|  | 12     g_mock_resource_context(base::LINKER_INITIALIZED); | 
|  | 13 | 
|  | 14 const ResourceContext& MockResourceContext::GetInstance() { | 
|  | 15   return g_mock_resource_context.Get(); | 
|  | 16 } | 
|  | 17 | 
|  | 18 MockResourceContext::MockResourceContext() {} | 
|  | 19 MockResourceContext::~MockResourceContext() {} | 
|  | 20 | 
|  | 21 void MockResourceContext::EnsureInitialized() const {} | 
|  | 22 | 
|  | 23 }  // namespace content | 
| OLD | NEW | 
|---|