diff options
author | sheu@chromium.org <sheu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-11 00:35:28 +0000 |
---|---|---|
committer | sheu@chromium.org <sheu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-11 00:35:28 +0000 |
commit | 065f99f47b7ea639bd313a96db8f34dc1de9c58e (patch) | |
tree | b110216e4e53abcc2969181c8a4552a4818f5e60 /chrome/browser/chromeos/display/display_preferences_unittest.cc | |
parent | 13669105e9d85af58d1798abe40dc1b199a239c7 (diff) | |
download | chromium_src-065f99f47b7ea639bd313a96db8f34dc1de9c58e.zip chromium_src-065f99f47b7ea639bd313a96db8f34dc1de9c58e.tar.gz chromium_src-065f99f47b7ea639bd313a96db8f34dc1de9c58e.tar.bz2 |
Read compositor VSync information from platform, when possible
The current query of VSync information through the GL context can be unreliable
on platforms that can dynamically disable vblanks, or multi-monitor setups.
Preferentially query the VSync information through the platform windowing
system (presently: XRandR on CrOS) when possible.
BUG=328953
TEST=local build, run on CrOS snow
Review URL: https://codereview.chromium.org/138903025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250250 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/display/display_preferences_unittest.cc')
-rw-r--r-- | chrome/browser/chromeos/display/display_preferences_unittest.cc | 26 |
1 files changed, 10 insertions, 16 deletions
diff --git a/chrome/browser/chromeos/display/display_preferences_unittest.cc b/chrome/browser/chromeos/display/display_preferences_unittest.cc index 03d604e..3abfaa5 100644 --- a/chrome/browser/chromeos/display/display_preferences_unittest.cc +++ b/chrome/browser/chromeos/display/display_preferences_unittest.cc @@ -231,7 +231,7 @@ TEST_F(DisplayPreferencesTest, BasicStores) { EXPECT_EQ(1, rotation); EXPECT_EQ(1250, ui_scale); - // Internal display never registere the resolution. + // Internal display never registered the resolution. int width = 0, height = 0; EXPECT_FALSE(property->GetInteger("width", &width)); EXPECT_FALSE(property->GetInteger("height", &height)); @@ -271,11 +271,11 @@ TEST_F(DisplayPreferencesTest, BasicStores) { EXPECT_TRUE(properties->GetDictionary(base::Int64ToString(id1), &property)); width = 0; height = 0; - // Internal dispaly shouldn't store its resolution. + // Internal display shouldn't store its resolution. EXPECT_FALSE(property->GetInteger("width", &width)); EXPECT_FALSE(property->GetInteger("height", &height)); - // External dispaly's resolution must be stored this time because + // External display's resolution must be stored this time because // it's not best. EXPECT_TRUE(properties->GetDictionary(base::Int64ToString(id2), &property)); EXPECT_TRUE(property->GetInteger("width", &width)); @@ -320,7 +320,7 @@ TEST_F(DisplayPreferencesTest, BasicStores) { EXPECT_FALSE(property->GetInteger("width", &width)); EXPECT_FALSE(property->GetInteger("height", &height)); - // External dispaly's selected resolution must not change + // External display's selected resolution must not change // by mirroring. EXPECT_TRUE(properties->GetDictionary(base::Int64ToString(id2), &property)); EXPECT_TRUE(property->GetInteger("width", &width)); @@ -329,11 +329,8 @@ TEST_F(DisplayPreferencesTest, BasicStores) { EXPECT_EQ(200, height); // Set new display's selected resolution. - display_manager->RegisterDisplayProperty(id2 + 1, - gfx::Display::ROTATE_0, - 1.0f, - NULL, - gfx::Size(500, 400)); + display_manager->RegisterDisplayProperty( + id2 + 1, gfx::Display::ROTATE_0, 1.0f, NULL, gfx::Size(500, 400)); UpdateDisplay("200x200*2, 600x500#600x500|500x400"); @@ -357,14 +354,11 @@ TEST_F(DisplayPreferencesTest, BasicStores) { EXPECT_FALSE(property->GetInteger("height", &height)); // Set yet another new display's selected resolution. - display_manager->RegisterDisplayProperty(id2 + 1, - gfx::Display::ROTATE_0, - 1.0f, - NULL, - gfx::Size(500, 400)); + display_manager->RegisterDisplayProperty( + id2 + 1, gfx::Display::ROTATE_0, 1.0f, NULL, gfx::Size(500, 400)); // Disconnect 2nd display first to generate new id for external display. UpdateDisplay("200x200*2"); - UpdateDisplay("200x200*2, 500x400#600x500|500x400"); + UpdateDisplay("200x200*2, 500x400#600x500|500x400%60.0f"); // Update key as the 2nd display gets new id. id2 = ash::ScreenUtil::GetSecondaryDisplay().id(); key = base::Int64ToString(id1) + "," + base::Int64ToString(id2); @@ -379,7 +373,7 @@ TEST_F(DisplayPreferencesTest, BasicStores) { EXPECT_TRUE(layout_value->GetString(kPrimaryIdKey, &primary_id_str)); EXPECT_EQ(base::Int64ToString(id1), primary_id_str); - // External dispaly's selected resolution must be updated. + // External display's selected resolution must be updated. EXPECT_TRUE(properties->GetDictionary(base::Int64ToString(id2), &property)); EXPECT_TRUE(property->GetInteger("width", &width)); EXPECT_TRUE(property->GetInteger("height", &height)); |