| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_PROFILES_PROFILE_KEYED_BASE_H_ | |
| 6 #define CHROME_BROWSER_PROFILES_PROFILE_KEYED_BASE_H_ | |
| 7 | |
| 8 // A root class used by the ProfileKeyedBaseFactory. | |
| 9 // | |
| 10 // ProfileKeyedBaseFactory is a generalization of dependency and lifetime | |
| 11 // management, leaving the actual implementation of storage and what actually | |
| 12 // happens at lifetime events up to the factory type. | |
| 13 class ProfileKeyedBase { | |
| 14 public: | |
| 15 virtual ~ProfileKeyedBase() {} | |
| 16 }; | |
| 17 | |
| 18 #endif // CHROME_BROWSER_PROFILES_PROFILE_KEYED_BASE_H_ | |
| OLD | NEW |