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

Side by Side Diff: chrome/browser/media_gallery/media_galleries_preferences_factory.h

Issue 11304022: [Media Gallery] Add existing attached devices to the prefs in time for media galleries dialog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed review comments Created 8 years, 1 month 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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 #ifndef CHROME_BROWSER_MEDIA_GALLERY_MEDIA_GALLERIES_PREFERENCES_FACTORY_H_ 5 #ifndef CHROME_BROWSER_MEDIA_GALLERY_MEDIA_GALLERIES_PREFERENCES_FACTORY_H_
6 #define CHROME_BROWSER_MEDIA_GALLERY_MEDIA_GALLERIES_PREFERENCES_FACTORY_H_ 6 #define CHROME_BROWSER_MEDIA_GALLERY_MEDIA_GALLERIES_PREFERENCES_FACTORY_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/singleton.h" 9 #include "base/memory/singleton.h"
10 #include "chrome/browser/profiles/profile_keyed_service_factory.h" 10 #include "chrome/browser/profiles/profile_keyed_service_factory.h"
11 11
12 class Profile; 12 class Profile;
13 13
14 namespace chrome { 14 namespace chrome {
15 class MediaGalleriesPreferences; 15 class MediaGalleriesPreferences;
16 } 16 }
17 17
18 // Singleton that owns all MediaGalleriesPreferences and associates them with 18 // Singleton that owns all MediaGalleriesPreferences and associates them with
19 // Profiles. 19 // Profiles.
20 class MediaGalleriesPreferencesFactory : public ProfileKeyedServiceFactory { 20 class MediaGalleriesPreferencesFactory : public ProfileKeyedServiceFactory {
21 public: 21 public:
22 // Use MediaFileSystemRegistry::GetPreferences() to get
23 // MediaGalleriesPreferences.
22 static chrome::MediaGalleriesPreferences* GetForProfile(Profile* profile); 24 static chrome::MediaGalleriesPreferences* GetForProfile(Profile* profile);
23 25
24 static MediaGalleriesPreferencesFactory* GetInstance(); 26 static MediaGalleriesPreferencesFactory* GetInstance();
25 27
26 private: 28 private:
27 friend struct DefaultSingletonTraits<MediaGalleriesPreferencesFactory>; 29 friend struct DefaultSingletonTraits<MediaGalleriesPreferencesFactory>;
28 30
29 MediaGalleriesPreferencesFactory(); 31 MediaGalleriesPreferencesFactory();
30 virtual ~MediaGalleriesPreferencesFactory(); 32 virtual ~MediaGalleriesPreferencesFactory();
31 33
32 // ProfileKeyedServiceFactory: 34 // ProfileKeyedServiceFactory:
33 virtual ProfileKeyedService* BuildServiceInstanceFor( 35 virtual ProfileKeyedService* BuildServiceInstanceFor(
34 Profile* profile) const OVERRIDE; 36 Profile* profile) const OVERRIDE;
35 virtual void RegisterUserPrefs(PrefService* prefs) OVERRIDE; 37 virtual void RegisterUserPrefs(PrefService* prefs) OVERRIDE;
36 virtual bool ServiceRedirectedInIncognito() const OVERRIDE; 38 virtual bool ServiceRedirectedInIncognito() const OVERRIDE;
37 39
38 DISALLOW_COPY_AND_ASSIGN(MediaGalleriesPreferencesFactory); 40 DISALLOW_COPY_AND_ASSIGN(MediaGalleriesPreferencesFactory);
39 }; 41 };
40 42
41 #endif // CHROME_BROWSER_MEDIA_GALLERY_MEDIA_GALLERIES_PREFERENCES_FACTORY_H_ 43 #endif // CHROME_BROWSER_MEDIA_GALLERY_MEDIA_GALLERIES_PREFERENCES_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698