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

Unified Diff: ash/display/display_layout_builder.h

Issue 1838833002: Move DisplayLayout and DisplayLayoutBuilder From ash To ui/display (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@screenwinmove
Patch Set: Fix comment Created 4 years, 8 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 | « ash/display/display_layout.cc ('k') | ash/display/display_layout_builder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/display/display_layout_builder.h
diff --git a/ash/display/display_layout_builder.h b/ash/display/display_layout_builder.h
deleted file mode 100644
index 5391a02cc2bdcd3fb861f15ab4482757f2739841..0000000000000000000000000000000000000000
--- a/ash/display/display_layout_builder.h
+++ /dev/null
@@ -1,56 +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 ASH_DISPLAY_DISPLAY_LAYOUT_BUILDER_H_
-#define ASH_DISPLAY_DISPLAY_LAYOUT_BUILDER_H_
-
-#include "ash/display/display_layout.h"
-#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
-
-namespace ash {
-
-class DisplayLayout;
-
-// A utility class to create a DisplayLayout instance.
-class ASH_EXPORT DisplayLayoutBuilder final {
- public:
- // Creates a builder that uses a copy of the |layout| as a source.
- explicit DisplayLayoutBuilder(const DisplayLayout& layout);
-
- // Ccreates a builder with the primary display id.
- explicit DisplayLayoutBuilder(int64_t primary_id);
-
- ~DisplayLayoutBuilder();
-
- DisplayLayoutBuilder& SetDefaultUnified(bool default_unified);
-
- DisplayLayoutBuilder& SetMirrored(bool mirrored);
-
- DisplayLayoutBuilder& ClearPlacements();
-
- // Adds a display placement.
- DisplayLayoutBuilder& AddDisplayPlacement(int64_t display_id,
- int64_t parent_id,
- DisplayPlacement::Position position,
- int offset);
-
- // Sets the display placement for the secondary display.
- DisplayLayoutBuilder& SetSecondaryPlacement(
- int64_t secondary_id,
- DisplayPlacement::Position position,
- int offset);
-
- // Returns the DisplayLayout. After this call, the builder becomes invalid.
- scoped_ptr<DisplayLayout> Build();
-
- private:
- scoped_ptr<DisplayLayout> layout_;
-
- DISALLOW_COPY_AND_ASSIGN(DisplayLayoutBuilder);
-};
-
-} // namespace ash
-
-#endif // ASH_DISPLAY_DISPLAY_LAYOUT_BUILDER_H_
« no previous file with comments | « ash/display/display_layout.cc ('k') | ash/display/display_layout_builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698