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

Unified Diff: extensions/browser/api/system_memory/memory_info_provider.h

Issue 1226353004: Generate all extension schema namespaces as "api" and instead vary the generated bundle names. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: extensions/browser/api/system_memory/memory_info_provider.h
diff --git a/extensions/browser/api/system_memory/memory_info_provider.h b/extensions/browser/api/system_memory/memory_info_provider.h
index 1e26e65d708bbf74cdd4b5d4472931a7e1d5175d..02719c2386328286e9c8f0e949c0ad1f6e90c382 100644
--- a/extensions/browser/api/system_memory/memory_info_provider.h
+++ b/extensions/browser/api/system_memory/memory_info_provider.h
@@ -15,9 +15,7 @@ class MemoryInfoProvider : public SystemInfoProvider {
public:
static MemoryInfoProvider* Get();
- const core_api::system_memory::MemoryInfo& memory_info() const {
- return info_;
- }
+ const api::system_memory::MemoryInfo& memory_info() const { return info_; }
static void InitializeForTesting(scoped_refptr<MemoryInfoProvider> provider);
@@ -37,7 +35,7 @@ class MemoryInfoProvider : public SystemInfoProvider {
// |info_| is accessed on the UI thread while |is_waiting_for_completion_| is
// false and on the sequenced worker pool while |is_waiting_for_completion_|
// is true.
- core_api::system_memory::MemoryInfo info_;
+ api::system_memory::MemoryInfo info_;
static base::LazyInstance<scoped_refptr<MemoryInfoProvider> > provider_;
« no previous file with comments | « extensions/browser/api/system_info/system_info_api.cc ('k') | extensions/browser/api/system_memory/memory_info_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698