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

Unified Diff: content/renderer/render_widget_mus_connection.h

Issue 1476643002: mustash: Enable connections to mus from the Chrome renderer [take 2] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't create a RenderWidgetWindowTreeeClientFactory in tests Created 5 years, 1 month 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: content/renderer/render_widget_mus_connection.h
diff --git a/content/renderer/render_widget_mus_connection.h b/content/renderer/render_widget_mus_connection.h
new file mode 100644
index 0000000000000000000000000000000000000000..d82d67e628c0296fa2dd5f667c942025533282ea
--- /dev/null
+++ b/content/renderer/render_widget_mus_connection.h
@@ -0,0 +1,46 @@
+// Copyright 2015 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 CONTENT_RENDERER_RENDER_WIDGET_MUS_CONNECTION_H_
+#define CONTENT_RENDERER_RENDER_WIDGET_MUS_CONNECTION_H_
+
+#include "base/macros.h"
+#include "components/mus/public/cpp/window.h"
+#include "components/mus/public/cpp/window_observer.h"
+#include "components/mus/public/cpp/window_surface.h"
+#include "components/mus/public/cpp/window_tree_connection.h"
+#include "components/mus/public/cpp/window_tree_delegate.h"
+#include "mojo/public/cpp/bindings/binding.h"
+
+namespace content {
+
+class RenderWidgetMusConnection : public mus::WindowTreeDelegate,
+ public mus::WindowObserver {
+ public:
+ RenderWidgetMusConnection(
+ int routing_id,
+ mojo::InterfaceRequest<mus::mojom::WindowTreeClient> request);
+ ~RenderWidgetMusConnection() override;
+
+ private:
+ void SubmitCompositorFrame();
+
+ // WindowTreeDelegate implementation:
+ void OnConnectionLost(mus::WindowTreeConnection* connection) override;
+ void OnEmbed(mus::Window* root) override;
+ void OnUnembed() override;
+ void OnWindowBoundsChanged(mus::Window* window,
+ const gfx::Rect& old_bounds,
+ const gfx::Rect& new_bounds) override;
+
+ const int routing_id_;
+ mus::Window* root_;
+ scoped_ptr<mus::WindowSurface> surface_;
+
+ DISALLOW_COPY_AND_ASSIGN(RenderWidgetMusConnection);
+};
+
+} // namespace content
+
+#endif // CONTENT_RENDERER_RENDER_WIDGET_MUS_CONNECTION_H_

Powered by Google App Engine
This is Rietveld 408576698