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

Side by Side Diff: chrome/browser/extensions/signin/gaia_auth_extension_loader.h

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_EXTENSIONS_SIGNIN_GAIA_AUTH_EXTENSION_LOADER_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_SIGNIN_GAIA_AUTH_EXTENSION_LOADER_H_
6 #define CHROME_BROWSER_EXTENSIONS_SIGNIN_GAIA_AUTH_EXTENSION_LOADER_H_ 6 #define CHROME_BROWSER_EXTENSIONS_SIGNIN_GAIA_AUTH_EXTENSION_LOADER_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "extensions/browser/browser_context_keyed_api_factory.h" 9 #include "extensions/browser/browser_context_keyed_api_factory.h"
10 10
(...skipping 21 matching lines...) Expand all
32 static GaiaAuthExtensionLoader* Get(content::BrowserContext* context); 32 static GaiaAuthExtensionLoader* Get(content::BrowserContext* context);
33 33
34 // BrowserContextKeyedAPI implementation. 34 // BrowserContextKeyedAPI implementation.
35 static BrowserContextKeyedAPIFactory<GaiaAuthExtensionLoader>* 35 static BrowserContextKeyedAPIFactory<GaiaAuthExtensionLoader>*
36 GetFactoryInstance(); 36 GetFactoryInstance();
37 37
38 private: 38 private:
39 friend class BrowserContextKeyedAPIFactory<GaiaAuthExtensionLoader>; 39 friend class BrowserContextKeyedAPIFactory<GaiaAuthExtensionLoader>;
40 40
41 // KeyedService overrides: 41 // KeyedService overrides:
42 virtual void Shutdown() OVERRIDE; 42 virtual void Shutdown() override;
43 43
44 // BrowserContextKeyedAPI implementation. 44 // BrowserContextKeyedAPI implementation.
45 static const char* service_name() { 45 static const char* service_name() {
46 return "GaiaAuthExtensionLoader"; 46 return "GaiaAuthExtensionLoader";
47 } 47 }
48 static const bool kServiceRedirectedInIncognito = true; 48 static const bool kServiceRedirectedInIncognito = true;
49 49
50 content::BrowserContext* browser_context_; 50 content::BrowserContext* browser_context_;
51 int load_count_; 51 int load_count_;
52 52
53 DISALLOW_COPY_AND_ASSIGN(GaiaAuthExtensionLoader); 53 DISALLOW_COPY_AND_ASSIGN(GaiaAuthExtensionLoader);
54 }; 54 };
55 55
56 } // namespace extensions 56 } // namespace extensions
57 57
58 #endif // CHROME_BROWSER_EXTENSIONS_SIGNIN_GAIA_AUTH_EXTENSION_LOADER_H_ 58 #endif // CHROME_BROWSER_EXTENSIONS_SIGNIN_GAIA_AUTH_EXTENSION_LOADER_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/shared_user_script_master.h ('k') | chrome/browser/extensions/standard_management_policy_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698