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

Unified Diff: ui/views/mus/display_list.h

Issue 2314203002: Move DisplayList to display; add ScreenBase. (Closed)
Patch Set: Update unit test namespace. Created 4 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 | « ui/views/mus/BUILD.gn ('k') | ui/views/mus/display_list.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/mus/display_list.h
diff --git a/ui/views/mus/display_list.h b/ui/views/mus/display_list.h
deleted file mode 100644
index 19b0ac97f11bde342082075527285a71d31830d6..0000000000000000000000000000000000000000
--- a/ui/views/mus/display_list.h
+++ /dev/null
@@ -1,69 +0,0 @@
-// Copyright 2016 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.
-
-#ifndef UI_VIEWS_MUS_DISPLAY_LIST_H_
-#define UI_VIEWS_MUS_DISPLAY_LIST_H_
-
-#include <stdint.h>
-
-#include <vector>
-
-#include "base/observer_list.h"
-#include "mojo/public/cpp/bindings/binding.h"
-#include "ui/display/display.h"
-#include "ui/views/mus/mus_export.h"
-
-namespace display {
-class Display;
-class DisplayObserver;
-}
-
-namespace views {
-
-// Maintains an ordered list of display::Displays as well as operations to add,
-// remove and update said list. Additionally maintains display::DisplayObservers
-// and updates them as appropriate.
-class VIEWS_MUS_EXPORT DisplayList {
- public:
- using Displays = std::vector<display::Display>;
-
- enum class Type {
- PRIMARY,
- NOT_PRIMARY,
- };
-
- DisplayList();
- ~DisplayList();
-
- void AddObserver(display::DisplayObserver* observer);
- void RemoveObserver(display::DisplayObserver* observer);
-
- const Displays& displays() const { return displays_; }
-
- Displays::const_iterator FindDisplayById(int64_t id) const;
- Displays::iterator FindDisplayById(int64_t id);
-
- Displays::const_iterator GetPrimaryDisplayIterator() const;
-
- // Updates the cached id based on display.id() as well as whether the Display
- // is the primary display.
- void UpdateDisplay(const display::Display& display, Type type);
-
- // Adds a new Display.
- void AddDisplay(const display::Display& display, Type type);
-
- // Removes the Display with the specified id.
- void RemoveDisplay(int64_t id);
-
- private:
- std::vector<display::Display> displays_;
- int primary_display_index_ = -1;
- base::ObserverList<display::DisplayObserver> observers_;
-
- DISALLOW_COPY_AND_ASSIGN(DisplayList);
-};
-
-} // namespace views
-
-#endif // UI_VIEWS_MUS_DISPLAY_LIST_H_
« no previous file with comments | « ui/views/mus/BUILD.gn ('k') | ui/views/mus/display_list.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698