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

Side by Side Diff: chrome/common/extensions/manifest_handlers/automation.h

Issue 622373003: Replacing the OVERRIDE with override in chrome/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolved Error 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_COMMON_EXTENSIONS_MANIFEST_HANDLERS_AUTOMATION_H_ 5 #ifndef CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_AUTOMATION_H_
6 #define CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_AUTOMATION_H_ 6 #define CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_AUTOMATION_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 }; 69 };
70 70
71 // Parses the automation manifest entry. 71 // Parses the automation manifest entry.
72 class AutomationHandler : public ManifestHandler { 72 class AutomationHandler : public ManifestHandler {
73 public: 73 public:
74 AutomationHandler(); 74 AutomationHandler();
75 virtual ~AutomationHandler(); 75 virtual ~AutomationHandler();
76 76
77 private: 77 private:
78 // ManifestHandler implementation. 78 // ManifestHandler implementation.
79 virtual bool Parse(Extension* extensions, base::string16* error) OVERRIDE; 79 virtual bool Parse(Extension* extensions, base::string16* error) override;
80 80
81 virtual ManifestPermission* CreatePermission() OVERRIDE; 81 virtual ManifestPermission* CreatePermission() override;
82 virtual ManifestPermission* CreateInitialRequiredPermission( 82 virtual ManifestPermission* CreateInitialRequiredPermission(
83 const Extension* extension) OVERRIDE; 83 const Extension* extension) override;
84 virtual const std::vector<std::string> Keys() const OVERRIDE; 84 virtual const std::vector<std::string> Keys() const override;
85 85
86 DISALLOW_COPY_AND_ASSIGN(AutomationHandler); 86 DISALLOW_COPY_AND_ASSIGN(AutomationHandler);
87 }; 87 };
88 88
89 } // namespace extensions 89 } // namespace extensions
90 90
91 #endif // CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_AUTOMATION_H_ 91 #endif // CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_AUTOMATION_H_
OLDNEW
« no previous file with comments | « chrome/common/extensions/manifest_handlers/app_launch_info.h ('k') | chrome/common/extensions/manifest_handlers/automation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698