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

Side by Side Diff: chrome/browser/profiles/profile_keyed_base.h

Issue 9703038: Profiles: Really fix refcounted services. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Forgot to save a file. >_< Created 8 years, 9 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 | Annotate | Revision Log
OLDNEW
(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_
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile_dependency_manager.cc ('k') | chrome/browser/profiles/profile_keyed_base_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698