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

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

Issue 855753004: Remove remainder of Athena related code from Chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove_USE_ATHENA5
Patch Set: Created 5 years, 11 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: chrome/browser/extensions/display_info_provider_athena.cc
diff --git a/chrome/browser/extensions/display_info_provider_athena.cc b/chrome/browser/extensions/display_info_provider_athena.cc
deleted file mode 100644
index 8ac6e27be610185db9196774e301e76d1fe3dc6d..0000000000000000000000000000000000000000
--- a/chrome/browser/extensions/display_info_provider_athena.cc
+++ /dev/null
@@ -1,43 +0,0 @@
-// Copyright 2014 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_athena.h"
-
-namespace extensions {
-
-DisplayInfoProviderAthena::DisplayInfoProviderAthena() {
-}
-
-DisplayInfoProviderAthena::~DisplayInfoProviderAthena() {
-}
-
-bool DisplayInfoProviderAthena::SetInfo(
- const std::string& display_id_str,
- const core_api::system_display::DisplayProperties& info,
- std::string* error) {
- *error = "Not implemented";
- return false;
-}
-
-void DisplayInfoProviderAthena::UpdateDisplayUnitInfoForPlatform(
- const gfx::Display& display,
- extensions::core_api::system_display::DisplayUnitInfo* unit) {
- static bool logged_once = false;
- if (!logged_once) {
- NOTIMPLEMENTED();
- logged_once = true;
- }
-}
-
-gfx::Screen* DisplayInfoProviderAthena::GetActiveScreen() {
- NOTIMPLEMENTED();
- return NULL;
-}
-
-// static
-DisplayInfoProvider* DisplayInfoProvider::Create() {
- return new DisplayInfoProviderAthena();
-}
-
-} // namespace extensions
« no previous file with comments | « chrome/browser/extensions/display_info_provider_athena.h ('k') | chrome/browser/extensions/extension_tab_util_athena.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698