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

Unified Diff: trunk/src/chrome/browser/extensions/api/system_display/display_info_provider_gtk.cc

Issue 23706007: Revert 221381 "[SystemInfo API] Implement DisplayInfoProvider::U..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 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
Index: trunk/src/chrome/browser/extensions/api/system_display/display_info_provider_gtk.cc
===================================================================
--- trunk/src/chrome/browser/extensions/api/system_display/display_info_provider_gtk.cc (revision 221402)
+++ trunk/src/chrome/browser/extensions/api/system_display/display_info_provider_gtk.cc (working copy)
@@ -1,35 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/extensions/api/system_display/display_info_provider.h"
-
-#include <gdk/gdk.h>
-
-#include "ui/gfx/display.h"
-#include "ui/gfx/screen.h"
-
-namespace extensions {
-
-void DisplayInfoProvider::SetInfo(
- const std::string& display_id,
- const api::system_display::DisplayProperties& info,
- const SetInfoCallback& callback) {
- base::MessageLoopProxy::current()->PostTask(
- FROM_HERE,
- base::Bind(callback, false, "Not implemented"));
-}
-
-void DisplayInfoProvider::UpdateDisplayUnitInfoForPlatform(
- const gfx::Display& display,
- extensions::api::system_display::DisplayUnitInfo* unit) {
- // TODO(Haojian): determine the DPI of the display
- GdkScreen* screen = gdk_screen_get_default();
- // The |id| in Display for GTK is the monitor index.
- gint monitor_num = static_cast<gint>(display.id());
- char* monitor_name = reinterpret_cast<char*>(gdk_screen_get_monitor_plug_name(
- screen, monitor_num));
- unit->name = std::string(monitor_name);
-}
-
-} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698