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

Unified Diff: chrome/browser/parsers/metadata_parser_filebase.h

Issue 8614003: Add OVERRIDE to chrome/browser/. (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 | « chrome/browser/omnibox_search_hint.h ('k') | chrome/browser/parsers/metadata_parser_jpeg.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/parsers/metadata_parser_filebase.h
diff --git a/chrome/browser/parsers/metadata_parser_filebase.h b/chrome/browser/parsers/metadata_parser_filebase.h
index e1614a895d6e8dad96186b2cabbedaa0b618ba3c..cca70853018f3ef68d4f7821f0d59c0efa828283 100644
--- a/chrome/browser/parsers/metadata_parser_filebase.h
+++ b/chrome/browser/parsers/metadata_parser_filebase.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -24,10 +24,10 @@ class FileMetadataParser : public MetadataParser {
virtual ~FileMetadataParser();
// Implementation of MetadataParser
- virtual bool Parse();
- virtual bool GetProperty(const std::string& key, std::string* value);
+ virtual bool Parse() OVERRIDE;
+ virtual bool GetProperty(const std::string& key, std::string* value) OVERRIDE;
- virtual MetadataPropertyIterator* GetPropertyIterator();
+ virtual MetadataPropertyIterator* GetPropertyIterator() OVERRIDE;
protected:
PropertyMap properties_;
@@ -44,9 +44,9 @@ class FileMetadataPropertyIterator : public MetadataPropertyIterator {
virtual ~FileMetadataPropertyIterator();
// Implementation of MetadataPropertyIterator
- virtual bool GetNext(std::string* key, std::string* value);
- virtual int Length();
- virtual bool IsEnd();
+ virtual bool GetNext(std::string* key, std::string* value) OVERRIDE;
+ virtual int Length() OVERRIDE;
+ virtual bool IsEnd() OVERRIDE;
private:
PropertyMap& properties_;
« no previous file with comments | « chrome/browser/omnibox_search_hint.h ('k') | chrome/browser/parsers/metadata_parser_jpeg.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698