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

Unified Diff: services/ui/ws/threaded_image_cursors_factory.h

Issue 2916823002: Move Mus into chrome's process when running with --mus.
Patch Set: Removing debug include. Created 3 years, 5 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/ws/threaded_image_cursors.cc ('k') | services/ui/ws/user_display_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/ws/threaded_image_cursors_factory.h
diff --git a/services/ui/ws/threaded_image_cursors_factory.h b/services/ui/ws/threaded_image_cursors_factory.h
new file mode 100644
index 0000000000000000000000000000000000000000..1deab54bcbb2e24041e50b16abd8318876b39c3a
--- /dev/null
+++ b/services/ui/ws/threaded_image_cursors_factory.h
@@ -0,0 +1,23 @@
+// Copyright 2017 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.
+
+#ifndef SERVICES_UI_WS_THREADED_IMAGE_CURSORS_FACTORY_H_
+#define SERVICES_UI_WS_THREADED_IMAGE_CURSORS_FACTORY_H_
+
+#include <memory>
+
+namespace ui {
+namespace ws {
+class ThreadedImageCursors;
+
+class ThreadedImageCursorsFactory {
+ public:
+ virtual ~ThreadedImageCursorsFactory() {}
+ virtual std::unique_ptr<ThreadedImageCursors> CreateCursors() = 0;
+};
+
+} // namespace ws
+} // namespace ui
+
+#endif // SERVICES_UI_WS_THREADED_IMAGE_CURSORS_FACTORY_H_
« no previous file with comments | « services/ui/ws/threaded_image_cursors.cc ('k') | services/ui/ws/user_display_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698