Index: chrome/browser/extensions/display_info_provider_aura.cc |
diff --git a/chrome/browser/extensions/display_info_provider_aura.cc b/chrome/browser/extensions/display_info_provider_aura.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ad2dcd514fe21e66cc5ea9be29ea0e90a3c470ac |
--- /dev/null |
+++ b/chrome/browser/extensions/display_info_provider_aura.cc |
@@ -0,0 +1,34 @@ |
+// 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/display_info_provider_aura.h" |
+ |
+namespace extensions { |
+ |
+DisplayInfoProviderAura::DisplayInfoProviderAura() { |
+} |
+ |
+DisplayInfoProviderAura::~DisplayInfoProviderAura() { |
+} |
+ |
+bool DisplayInfoProviderAura::SetInfo( |
+ const std::string& display_id, |
+ const api::system_display::DisplayProperties& info, |
+ std::string* error) { |
+ *error = "Not implemented"; |
+ return false; |
+} |
+ |
+void DisplayInfoProviderAura::UpdateDisplayUnitInfoForPlatform( |
+ const gfx::Display& display, |
+ extensions::api::system_display::DisplayUnitInfo* unit) { |
+ NOTIMPLEMENTED(); |
+} |
+ |
+// static |
+DisplayInfoProvider* DisplayInfoProvider::Create() { |
+ return new DisplayInfoProviderAura(); |
+} |
+ |
+} // namespace extensions |