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

Unified Diff: extensions/browser/api/system_display/system_display_api.cc

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_display/system_display_api.cc
diff --git a/extensions/browser/api/system_display/system_display_api.cc b/extensions/browser/api/system_display/system_display_api.cc
index 82e15fa44ec223c87d2786985d127587fc2bc399..370344d930c388116363d94a7b4e7cde8e0019ee 100644
--- a/extensions/browser/api/system_display/system_display_api.cc
+++ b/extensions/browser/api/system_display/system_display_api.cc
@@ -17,18 +17,17 @@
namespace extensions {
-using core_api::system_display::DisplayUnitInfo;
+using api::system_display::DisplayUnitInfo;
-namespace SetDisplayProperties = core_api::system_display::SetDisplayProperties;
+namespace SetDisplayProperties = api::system_display::SetDisplayProperties;
-typedef std::vector<linked_ptr<core_api::system_display::DisplayUnitInfo> >
+typedef std::vector<linked_ptr<api::system_display::DisplayUnitInfo>>
DisplayInfo;
bool SystemDisplayGetInfoFunction::RunSync() {
DisplayInfo all_displays_info =
DisplayInfoProvider::Get()->GetAllDisplaysInfo();
- results_ =
- core_api::system_display::GetInfo::Results::Create(all_displays_info);
+ results_ = api::system_display::GetInfo::Results::Create(all_displays_info);
return true;
}

Powered by Google App Engine
This is Rietveld 408576698