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

Unified Diff: ui/base/x/x11_util_unittest.cc

Issue 2347383002: X11: Use better visuals for OpenGL (Closed)
Patch Set: auto* 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/base/x/x11_util_internal.h ('k') | ui/gfx/x/x11_switches.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/x/x11_util_unittest.cc
diff --git a/ui/base/x/x11_util_unittest.cc b/ui/base/x/x11_util_unittest.cc
deleted file mode 100644
index be49b19f943f1ceafa50ab1c74fe61a1e3b58e9d..0000000000000000000000000000000000000000
--- a/ui/base/x/x11_util_unittest.cc
+++ /dev/null
@@ -1,36 +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.
-
-#include "base/environment.h"
-#include "testing/gtest/include/gtest/gtest.h"
-#include "ui/base/x/x11_util_internal.h"
-#include "ui/gfx/x/x11_types.h"
-
-namespace ui {
-
-class X11UtilTest : public testing::Test {
- public:
- X11UtilTest() {}
- ~X11UtilTest() override {}
-};
-
-TEST_F(X11UtilTest, ChooseVisualForWindow) {
- XDisplay* display = gfx::GetXDisplay();
- XWindowAttributes attribs;
- Window root = XDefaultRootWindow(display);
- Status status = XGetWindowAttributes(display, root, &attribs);
- DCHECK_NE(0, status);
-
- int depth = 0;
- bool has_compositing_manager = false;
- ui::ChooseVisualForWindow(has_compositing_manager, nullptr, &depth);
- EXPECT_EQ(attribs.depth, depth);
-
- // Setting to true has no effect because it has been called with false before.
- has_compositing_manager = true;
- ui::ChooseVisualForWindow(has_compositing_manager, nullptr, &depth);
- EXPECT_EQ(attribs.depth, depth);
-}
-
-} // namespace ui
« no previous file with comments | « ui/base/x/x11_util_internal.h ('k') | ui/gfx/x/x11_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698