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

Unified Diff: chrome/browser/extensions/display_info_provider_win.cc

Issue 389633002: Move system.* family of APIs to extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 6 years, 3 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
« no previous file with comments | « chrome/browser/extensions/display_info_provider_win.h ('k') | chrome/chrome_browser_extensions.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/display_info_provider_win.cc
diff --git a/chrome/browser/extensions/display_info_provider_win.cc b/chrome/browser/extensions/display_info_provider_win.cc
index 951127261283835498bedc301a6db45d6f95c759..609a615f5b61ced946627f2f9ba5e5af26c76cfb 100644
--- a/chrome/browser/extensions/display_info_provider_win.cc
+++ b/chrome/browser/extensions/display_info_provider_win.cc
@@ -10,13 +10,13 @@
#include "base/strings/string_number_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "base/win/win_util.h"
-#include "chrome/common/extensions/api/system_display.h"
+#include "extensions/common/api/system_display.h"
#include "ui/gfx/size.h"
#include "ui/gfx/win/dpi.h"
namespace extensions {
-using api::system_display::DisplayUnitInfo;
+using core_api::system_display::DisplayUnitInfo;
namespace {
@@ -58,7 +58,7 @@ DisplayInfoProviderWin::~DisplayInfoProviderWin() {
bool DisplayInfoProviderWin::SetInfo(
const std::string& display_id,
- const api::system_display::DisplayProperties& info,
+ const core_api::system_display::DisplayProperties& info,
std::string* error) {
*error = "Not implemented";
return false;
@@ -66,7 +66,7 @@ bool DisplayInfoProviderWin::SetInfo(
void DisplayInfoProviderWin::UpdateDisplayUnitInfoForPlatform(
const gfx::Display& display,
- extensions::api::system_display::DisplayUnitInfo* unit) {
+ extensions::core_api::system_display::DisplayUnitInfo* unit) {
DisplayInfo all_displays;
EnumDisplayMonitors(
NULL, NULL, EnumMonitorCallback, reinterpret_cast<LPARAM>(&all_displays));
« no previous file with comments | « chrome/browser/extensions/display_info_provider_win.h ('k') | chrome/chrome_browser_extensions.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698