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

Unified Diff: services/ui/display/platform_screen_ozone_unittests.cc

Issue 2317073003: Rename PlatformScreen implementations. (Closed)
Patch Set: Fix tests. 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 | « services/ui/display/platform_screen_ozone.cc ('k') | services/ui/display/platform_screen_stub.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/display/platform_screen_ozone_unittests.cc
diff --git a/services/ui/display/platform_screen_ozone_unittests.cc b/services/ui/display/platform_screen_ozone_unittests.cc
index 0f4fddde3340f8eee727e1ac29ea4091dcfbd646..e150bb589f81f48069e5fe7d5309a5434a4c5dc8 100644
--- a/services/ui/display/platform_screen_ozone_unittests.cc
+++ b/services/ui/display/platform_screen_ozone_unittests.cc
@@ -8,7 +8,7 @@
#include "base/logging.h"
#include "base/memory/ptr_util.h"
#include "services/ui/display/platform_screen.h"
-#include "services/ui/display/platform_screen_impl_ozone.h"
+#include "services/ui/display/platform_screen_ozone.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/display/chromeos/display_configurator.h"
@@ -101,7 +101,7 @@ class TestPlatformScreenDelegate : public PlatformScreenDelegate {
};
// Test fixture with helpers to act like ui::DisplayConfigurator and send
-// OnDisplayModeChanged() to PlatformScreenImplOzone.
+// OnDisplayModeChanged() to PlatformScreenOzone.
class PlatformScreenOzoneTest : public testing::Test {
public:
PlatformScreenOzoneTest() {}
@@ -170,7 +170,7 @@ class PlatformScreenOzoneTest : public testing::Test {
void SetUp() override {
testing::Test::SetUp();
ui::OzonePlatform::InitializeForUI();
- platform_screen_ = base::MakeUnique<PlatformScreenImplOzone>();
+ platform_screen_ = base::MakeUnique<PlatformScreenOzone>();
platform_screen_->Init(&delegate_);
// Double check the expected display exists and clear counters.
@@ -191,7 +191,7 @@ class PlatformScreenOzoneTest : public testing::Test {
}
TestPlatformScreenDelegate delegate_;
- std::unique_ptr<PlatformScreenImplOzone> platform_screen_;
+ std::unique_ptr<PlatformScreenOzone> platform_screen_;
std::vector<std::unique_ptr<DisplaySnapshot>> snapshots_;
};
« no previous file with comments | « services/ui/display/platform_screen_ozone.cc ('k') | services/ui/display/platform_screen_stub.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698