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

Unified Diff: components/exo/display.cc

Issue 2723143002: Add unittests of ArcCustomNotificationView (Closed)
Patch Set: Created 3 years, 10 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: components/exo/display.cc
diff --git a/components/exo/display.cc b/components/exo/display.cc
index 44b975a24256036c792f93acae4a79d0cd3aa28c..be3790094cb6829ee8542d10ae3089448f2ea9e3 100644
--- a/components/exo/display.cc
+++ b/components/exo/display.cc
@@ -12,7 +12,7 @@
#include "base/memory/ptr_util.h"
#include "base/trace_event/trace_event.h"
#include "base/trace_event/trace_event_argument.h"
-#include "components/exo/notification_surface.h"
+#include "components/exo/notification_surface_impl.h"
#include "components/exo/notification_surface_manager.h"
#include "components/exo/shared_memory.h"
#include "components/exo/shell_surface.h"
@@ -227,8 +227,8 @@ std::unique_ptr<NotificationSurface> Display::CreateNotificationSurface(
return nullptr;
}
- return base::MakeUnique<NotificationSurface>(notification_surface_manager_,
- surface, notification_id);
+ return base::MakeUnique<NotificationSurfaceImpl>(
+ notification_surface_manager_, surface, notification_id);
}
} // namespace exo

Powered by Google App Engine
This is Rietveld 408576698