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

Side by Side Diff: chrome/browser/extensions/default_apps.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 (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_EXTENSIONS_DEFAULT_APPS_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_DEFAULT_APPS_H_
6 #define CHROME_BROWSER_EXTENSIONS_DEFAULT_APPS_H_ 6 #define CHROME_BROWSER_EXTENSIONS_DEFAULT_APPS_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "chrome/browser/extensions/external_provider_impl.h" 9 #include "chrome/browser/extensions/external_provider_impl.h"
10 #include "extensions/common/manifest.h" 10 #include "extensions/common/manifest.h"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 Provider(Profile* profile, 44 Provider(Profile* profile,
45 VisitorInterface* service, 45 VisitorInterface* service,
46 extensions::ExternalLoader* loader, 46 extensions::ExternalLoader* loader,
47 extensions::Manifest::Location crx_location, 47 extensions::Manifest::Location crx_location,
48 extensions::Manifest::Location download_location, 48 extensions::Manifest::Location download_location,
49 int creation_flags); 49 int creation_flags);
50 50
51 bool ShouldInstallInProfile(); 51 bool ShouldInstallInProfile();
52 52
53 // ExternalProviderImpl overrides: 53 // ExternalProviderImpl overrides:
54 virtual void VisitRegisteredExtension() OVERRIDE; 54 virtual void VisitRegisteredExtension() override;
55 virtual void SetPrefs(base::DictionaryValue* prefs) OVERRIDE; 55 virtual void SetPrefs(base::DictionaryValue* prefs) override;
56 56
57 private: 57 private:
58 Profile* profile_; 58 Profile* profile_;
59 bool is_migration_; 59 bool is_migration_;
60 60
61 DISALLOW_COPY_AND_ASSIGN(Provider); 61 DISALLOW_COPY_AND_ASSIGN(Provider);
62 }; 62 };
63 63
64 } // namespace default_apps 64 } // namespace default_apps
65 65
66 #endif // CHROME_BROWSER_EXTENSIONS_DEFAULT_APPS_H_ 66 #endif // CHROME_BROWSER_EXTENSIONS_DEFAULT_APPS_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/declarative_user_script_master.h ('k') | chrome/browser/extensions/default_apps_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698