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

Side by Side Diff: extensions/browser/api/system_storage/storage_info_provider.h

Issue 622343002: replace OVERRIDE and FINAL with override and final in 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 EXTENSIONS_BROWSER_API_SYSTEM_STORAGE_STORAGE_INFO_PROVIDER_H_ 5 #ifndef EXTENSIONS_BROWSER_API_SYSTEM_STORAGE_STORAGE_INFO_PROVIDER_H_
6 #define EXTENSIONS_BROWSER_API_SYSTEM_STORAGE_STORAGE_INFO_PROVIDER_H_ 6 #define EXTENSIONS_BROWSER_API_SYSTEM_STORAGE_STORAGE_INFO_PROVIDER_H_
7 7
8 #include <set> 8 #include <set>
9 9
10 #include "base/lazy_instance.h" 10 #include "base/lazy_instance.h"
(...skipping 23 matching lines...) Expand all
34 34
35 class StorageInfoProvider : public SystemInfoProvider { 35 class StorageInfoProvider : public SystemInfoProvider {
36 public: 36 public:
37 typedef base::Callback<void(const std::string&, double)> 37 typedef base::Callback<void(const std::string&, double)>
38 GetStorageFreeSpaceCallback; 38 GetStorageFreeSpaceCallback;
39 39
40 // Get the single shared instance of StorageInfoProvider. 40 // Get the single shared instance of StorageInfoProvider.
41 static StorageInfoProvider* Get(); 41 static StorageInfoProvider* Get();
42 42
43 // SystemInfoProvider implementations 43 // SystemInfoProvider implementations
44 virtual void PrepareQueryOnUIThread() OVERRIDE; 44 virtual void PrepareQueryOnUIThread() override;
45 virtual void InitializeProvider( 45 virtual void InitializeProvider(
46 const base::Closure& do_query_info_callback) OVERRIDE; 46 const base::Closure& do_query_info_callback) override;
47 47
48 virtual double GetStorageFreeSpaceFromTransientIdOnFileThread( 48 virtual double GetStorageFreeSpaceFromTransientIdOnFileThread(
49 const std::string& transient_id); 49 const std::string& transient_id);
50 50
51 const StorageUnitInfoList& storage_unit_info_list() const; 51 const StorageUnitInfoList& storage_unit_info_list() const;
52 52
53 static void InitializeForTesting(scoped_refptr<StorageInfoProvider> provider); 53 static void InitializeForTesting(scoped_refptr<StorageInfoProvider> provider);
54 54
55 protected: 55 protected:
56 StorageInfoProvider(); 56 StorageInfoProvider();
57 57
58 virtual ~StorageInfoProvider(); 58 virtual ~StorageInfoProvider();
59 59
60 // Put all available storages' information into |info_|. 60 // Put all available storages' information into |info_|.
61 void GetAllStoragesIntoInfoList(); 61 void GetAllStoragesIntoInfoList();
62 62
63 // The last information filled up by QueryInfo and is accessed on multiple 63 // The last information filled up by QueryInfo and is accessed on multiple
64 // threads, but the whole class is being guarded by SystemInfoProvider base 64 // threads, but the whole class is being guarded by SystemInfoProvider base
65 // class. 65 // class.
66 // 66 //
67 // |info_| is accessed on the UI thread while |is_waiting_for_completion_| is 67 // |info_| is accessed on the UI thread while |is_waiting_for_completion_| is
68 // false and on the sequenced worker pool while |is_waiting_for_completion_| 68 // false and on the sequenced worker pool while |is_waiting_for_completion_|
69 // is true. 69 // is true.
70 StorageUnitInfoList info_; 70 StorageUnitInfoList info_;
71 71
72 private: 72 private:
73 // SystemInfoProvider implementations. 73 // SystemInfoProvider implementations.
74 // Override to query the available capacity of all known storage devices on 74 // Override to query the available capacity of all known storage devices on
75 // the blocking pool, including fixed and removable devices. 75 // the blocking pool, including fixed and removable devices.
76 virtual bool QueryInfo() OVERRIDE; 76 virtual bool QueryInfo() override;
77 77
78 static base::LazyInstance<scoped_refptr<StorageInfoProvider> > provider_; 78 static base::LazyInstance<scoped_refptr<StorageInfoProvider> > provider_;
79 79
80 DISALLOW_COPY_AND_ASSIGN(StorageInfoProvider); 80 DISALLOW_COPY_AND_ASSIGN(StorageInfoProvider);
81 }; 81 };
82 82
83 } // namespace extensions 83 } // namespace extensions
84 84
85 #endif // EXTENSIONS_BROWSER_API_SYSTEM_STORAGE_STORAGE_INFO_PROVIDER_H_ 85 #endif // EXTENSIONS_BROWSER_API_SYSTEM_STORAGE_STORAGE_INFO_PROVIDER_H_
OLDNEW
« no previous file with comments | « extensions/browser/api/system_network/system_network_api.h ('k') | extensions/browser/api/system_storage/system_storage_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698