| Index: mash/wm/window_manager_impl.h
|
| diff --git a/mash/wm/window_manager_impl.h b/mash/wm/window_manager_impl.h
|
| index d071bfc26ee2216014dc9d44bd9ec7f587e135ab..38aff19e7ddb1027e8de6e55a54e820206c7867a 100644
|
| --- a/mash/wm/window_manager_impl.h
|
| +++ b/mash/wm/window_manager_impl.h
|
| @@ -34,6 +34,10 @@ class WindowManagerImpl : public mus::mojom::WindowManager,
|
| gfx::Rect CalculateDefaultBounds(mus::Window* window) const;
|
| gfx::Rect GetMaximizedWindowBounds() const;
|
|
|
| + mus::Window* NewTopLevelWindow(
|
| + std::map<std::string, std::vector<uint8_t>>* properties,
|
| + mus::mojom::WindowTreeClientPtr client);
|
| +
|
| // mus::WindowObserver:
|
| void OnTreeChanging(const TreeChangeParams& params) override;
|
| void OnWindowEmbeddedAppDisconnected(mus::Window* window) override;
|
| @@ -49,6 +53,8 @@ class WindowManagerImpl : public mus::mojom::WindowManager,
|
| bool OnWmSetProperty(mus::Window* window,
|
| const std::string& name,
|
| scoped_ptr<std::vector<uint8_t>>* new_data) override;
|
| + mus::Window* OnWmCreateTopLevelWindow(
|
| + std::map<std::string, std::vector<uint8_t>>* properties) override;
|
|
|
| WindowManagerApplication* state_;
|
|
|
|
|