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

Side by Side Diff: chrome/browser/chromeos/platform_keys/platform_keys_service_factory.h

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h Created 6 years, 2 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_CHROMEOS_PLATFORM_KEYS_PLATFORM_KEYS_SERVICE_FACTORY_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_PLATFORM_KEYS_PLATFORM_KEYS_SERVICE_FACTORY_H_
6 #define CHROME_BROWSER_CHROMEOS_PLATFORM_KEYS_PLATFORM_KEYS_SERVICE_FACTORY_H_ 6 #define CHROME_BROWSER_CHROMEOS_PLATFORM_KEYS_PLATFORM_KEYS_SERVICE_FACTORY_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 17 matching lines...) Expand all
28 static PlatformKeysServiceFactory* GetInstance(); 28 static PlatformKeysServiceFactory* GetInstance();
29 29
30 private: 30 private:
31 friend struct DefaultSingletonTraits<PlatformKeysServiceFactory>; 31 friend struct DefaultSingletonTraits<PlatformKeysServiceFactory>;
32 32
33 PlatformKeysServiceFactory(); 33 PlatformKeysServiceFactory();
34 virtual ~PlatformKeysServiceFactory(); 34 virtual ~PlatformKeysServiceFactory();
35 35
36 // BrowserContextKeyedServiceFactory: 36 // BrowserContextKeyedServiceFactory:
37 virtual content::BrowserContext* GetBrowserContextToUse( 37 virtual content::BrowserContext* GetBrowserContextToUse(
38 content::BrowserContext* context) const OVERRIDE; 38 content::BrowserContext* context) const override;
39 virtual KeyedService* BuildServiceInstanceFor( 39 virtual KeyedService* BuildServiceInstanceFor(
40 content::BrowserContext* context) const OVERRIDE; 40 content::BrowserContext* context) const override;
41 41
42 DISALLOW_COPY_AND_ASSIGN(PlatformKeysServiceFactory); 42 DISALLOW_COPY_AND_ASSIGN(PlatformKeysServiceFactory);
43 }; 43 };
44 44
45 } // namespace chromeos 45 } // namespace chromeos
46 46
47 #endif // CHROME_BROWSER_CHROMEOS_PLATFORM_KEYS_PLATFORM_KEYS_SERVICE_FACTORY_H _ 47 #endif // CHROME_BROWSER_CHROMEOS_PLATFORM_KEYS_PLATFORM_KEYS_SERVICE_FACTORY_H _
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/platform_keys/platform_keys_nss.cc ('k') | chrome/browser/chromeos/policy/app_pack_updater.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698