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

Unified Diff: chrome/common/content_settings_pattern.h

Issue 8551009: Add OVERRIDE to chrome/common/ and nacl/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/common/extensions/extension_localization_peer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/content_settings_pattern.h
diff --git a/chrome/common/content_settings_pattern.h b/chrome/common/content_settings_pattern.h
index 6d61954e44689969ffb6cc69f4984860fd382014..187ec2439687553c8c748dcdea0bc8d643c9685d 100644
--- a/chrome/common/content_settings_pattern.h
+++ b/chrome/common/content_settings_pattern.h
@@ -12,6 +12,7 @@
#include <string>
#include "base/basictypes.h"
+#include "base/compiler_specific.h"
#include "base/gtest_prod_util.h"
class GURL;
@@ -199,23 +200,23 @@ class ContentSettingsPattern {
virtual ~Builder();
// Overrides BuilderInterface
- virtual BuilderInterface* WithPort(const std::string& port);
+ virtual BuilderInterface* WithPort(const std::string& port) OVERRIDE;
- virtual BuilderInterface* WithPortWildcard();
+ virtual BuilderInterface* WithPortWildcard() OVERRIDE;
- virtual BuilderInterface* WithHost(const std::string& host);
+ virtual BuilderInterface* WithHost(const std::string& host) OVERRIDE;
- virtual BuilderInterface* WithDomainWildcard();
+ virtual BuilderInterface* WithDomainWildcard() OVERRIDE;
- virtual BuilderInterface* WithScheme(const std::string& scheme);
+ virtual BuilderInterface* WithScheme(const std::string& scheme) OVERRIDE;
- virtual BuilderInterface* WithSchemeWildcard();
+ virtual BuilderInterface* WithSchemeWildcard() OVERRIDE;
- virtual BuilderInterface* WithPath(const std::string& path);
+ virtual BuilderInterface* WithPath(const std::string& path) OVERRIDE;
- virtual BuilderInterface* Invalid();
+ virtual BuilderInterface* Invalid() OVERRIDE;
- virtual ContentSettingsPattern Build();
+ virtual ContentSettingsPattern Build() OVERRIDE;
private:
// Canonicalizes the pattern parts so that they are ASCII only, either
// in original (if it was already ASCII) or punycode form.
« no previous file with comments | « no previous file | chrome/common/extensions/extension_localization_peer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698