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

Unified Diff: content/public/common/screen_info.cc

Issue 2317563004: Change blink::WebScreenInfo to content::ScreenInfo (Closed)
Patch Set: Fix Windows compile 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
Index: content/public/common/screen_info.cc
diff --git a/content/public/common/screen_info.cc b/content/public/common/screen_info.cc
new file mode 100644
index 0000000000000000000000000000000000000000..1f570a90a19e2394d9e97f679309668ea8ccbfb8
--- /dev/null
+++ b/content/public/common/screen_info.cc
@@ -0,0 +1,25 @@
+// 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.
+
+#include "content/public/common/screen_info.h"
+
+namespace content {
+
+bool ScreenInfo::operator==(const ScreenInfo& other) const {
+ return device_scale_factor == other.device_scale_factor &&
+ depth == other.depth &&
+ depth_per_component == other.depth_per_component &&
+ is_monochrome == other.is_monochrome &&
+ rect == other.rect &&
+ available_rect == other.available_rect &&
+ orientation_type == other.orientation_type &&
+ orientation_angle == other.orientation_angle;
+}
+
+bool ScreenInfo::operator!=(const ScreenInfo& other) const {
+ return !(*this == other);
+}
+
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698