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

Unified Diff: ui/display/manager/managed_display_info.h

Issue 2540313002: Split //ui/display and create //ui/display/manager. (Closed)
Patch Set: Cleanup export header. Created 4 years 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/display/manager/display_manager_utilities.h ('k') | ui/display/test/display_manager_test_api.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/display/manager/managed_display_info.h
diff --git a/ui/display/manager/managed_display_info.h b/ui/display/manager/managed_display_info.h
index 1fb48a87982a257e7c798a3641f8f614bc2f7b49..57c259b2806ca31792701a5ead4b577a88d07e81 100644
--- a/ui/display/manager/managed_display_info.h
+++ b/ui/display/manager/managed_display_info.h
@@ -15,7 +15,7 @@
#include "base/files/file_path.h"
#include "base/memory/ref_counted.h"
#include "ui/display/display.h"
-#include "ui/display/display_export.h"
+#include "ui/display/manager/display_manager_export.h"
#include "ui/display/types/display_constants.h"
#include "ui/gfx/geometry/insets.h"
#include "ui/gfx/geometry/rect.h"
@@ -24,7 +24,7 @@ namespace display {
// A struct that represents all the data required for touch calibration for the
// display.
-struct DISPLAY_EXPORT TouchCalibrationData {
+struct DISPLAY_MANAGER_EXPORT TouchCalibrationData {
// CalibrationPointPair.first -> display point
// CalibrationPointPair.second -> touch point
using CalibrationPointPair = std::pair<gfx::Point, gfx::Point>;
@@ -43,7 +43,7 @@ struct DISPLAY_EXPORT TouchCalibrationData {
};
// A class that represents the display's mode info.
-class DISPLAY_EXPORT ManagedDisplayMode
+class DISPLAY_MANAGER_EXPORT ManagedDisplayMode
: public base::RefCounted<ManagedDisplayMode> {
public:
ManagedDisplayMode();
@@ -98,7 +98,7 @@ class DISPLAY_EXPORT ManagedDisplayMode
// ManagedDisplayInfo contains metadata for each display. This is used to create
// |Display| as well as to maintain extra infomation to manage displays in ash
// environment. This class is intentionally made copiable.
-class DISPLAY_EXPORT ManagedDisplayInfo {
+class DISPLAY_MANAGER_EXPORT ManagedDisplayInfo {
public:
using ManagedDisplayModeList = std::vector<scoped_refptr<ManagedDisplayMode>>;
@@ -393,7 +393,7 @@ class DISPLAY_EXPORT ManagedDisplayInfo {
// Resets the synthesized display id for testing. This
// is necessary to avoid overflowing the output index.
-void DISPLAY_EXPORT ResetDisplayIdForTest();
+void DISPLAY_MANAGER_EXPORT ResetDisplayIdForTest();
} // namespace display
« no previous file with comments | « ui/display/manager/display_manager_utilities.h ('k') | ui/display/test/display_manager_test_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698