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

Side by Side Diff: chrome/browser/browsing_data/browsing_data_appcache_helper.h

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs 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_BROWSING_DATA_BROWSING_DATA_APPCACHE_HELPER_H_ 5 #ifndef CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_APPCACHE_HELPER_H_
6 #define CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_APPCACHE_HELPER_H_ 6 #define CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_APPCACHE_HELPER_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 // True if no appcaches are currently stored. 69 // True if no appcaches are currently stored.
70 bool empty() const; 70 bool empty() const;
71 71
72 // Returns the number of app cache resources. 72 // Returns the number of app cache resources.
73 size_t GetAppCacheCount() const; 73 size_t GetAppCacheCount() const;
74 74
75 // Returns a current map with the |AppCacheInfoVector|s per origin. 75 // Returns a current map with the |AppCacheInfoVector|s per origin.
76 const OriginAppCacheInfoMap& GetOriginAppCacheInfoMap() const; 76 const OriginAppCacheInfoMap& GetOriginAppCacheInfoMap() const;
77 77
78 // BrowsingDataAppCacheHelper methods. 78 // BrowsingDataAppCacheHelper methods.
79 virtual void StartFetching(const base::Closure& completion_callback) OVERRIDE; 79 virtual void StartFetching(const base::Closure& completion_callback) override;
80 virtual void DeleteAppCacheGroup(const GURL& manifest_url) OVERRIDE; 80 virtual void DeleteAppCacheGroup(const GURL& manifest_url) override;
81 81
82 private: 82 private:
83 virtual ~CannedBrowsingDataAppCacheHelper(); 83 virtual ~CannedBrowsingDataAppCacheHelper();
84 84
85 DISALLOW_COPY_AND_ASSIGN(CannedBrowsingDataAppCacheHelper); 85 DISALLOW_COPY_AND_ASSIGN(CannedBrowsingDataAppCacheHelper);
86 }; 86 };
87 87
88 #endif // CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_APPCACHE_HELPER_H_ 88 #endif // CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_APPCACHE_HELPER_H_
OLDNEW
« no previous file with comments | « chrome/browser/browser_process_platform_part_mac.h ('k') | chrome/browser/browsing_data/browsing_data_channel_id_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698