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

Unified Diff: headless/lib/browser/headless_window_parenting_client.h

Issue 2438853002: Renames aura::client::WindowTreeClient to WindowParentingClient (Closed)
Patch Set: cleanup Created 4 years, 2 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 | « headless/lib/browser/headless_screen.h ('k') | headless/lib/browser/headless_window_parenting_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: headless/lib/browser/headless_window_parenting_client.h
diff --git a/headless/lib/browser/headless_window_parenting_client.h b/headless/lib/browser/headless_window_parenting_client.h
new file mode 100644
index 0000000000000000000000000000000000000000..1694080fd3fe0804d19bb39d6fba88224d52c52a
--- /dev/null
+++ b/headless/lib/browser/headless_window_parenting_client.h
@@ -0,0 +1,31 @@
+// Copyright 2016 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 HEADLESS_LIB_BROWSER_HEADLESS_WINDOW_PARENTING_CLIENT_H_
+#define HEADLESS_LIB_BROWSER_HEADLESS_WINDOW_PARENTING_CLIENT_H_
+
+#include "base/macros.h"
+#include "ui/aura/client/window_parenting_client.h"
+
+namespace headless {
+
+class HeadlessWindowParentingClient
+ : public aura::client::WindowParentingClient {
+ public:
+ explicit HeadlessWindowParentingClient(aura::Window* root_window);
+ ~HeadlessWindowParentingClient() override;
+
+ aura::Window* GetDefaultParent(aura::Window* context,
+ aura::Window* window,
+ const gfx::Rect& bounds) override;
+
+ private:
+ aura::Window* root_window_; // Not owned.
+
+ DISALLOW_COPY_AND_ASSIGN(HeadlessWindowParentingClient);
+};
+
+} // namespace headless
+
+#endif // HEADLESS_LIB_BROWSER_HEADLESS_WINDOW_PARENTING_CLIENT_H_
« no previous file with comments | « headless/lib/browser/headless_screen.h ('k') | headless/lib/browser/headless_window_parenting_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698