| Index: ash/mus/test/wm_test_helper.h
|
| diff --git a/ash/mus/test/wm_test_helper.h b/ash/mus/test/wm_test_helper.h
|
| index 88e38d7b1fa07266f4ddf59e04f67a48db868e4c..ac293822f7d352549e34f36dd252862a5d3d20f1 100644
|
| --- a/ash/mus/test/wm_test_helper.h
|
| +++ b/ash/mus/test/wm_test_helper.h
|
| @@ -51,13 +51,18 @@ class WmTestHelper {
|
|
|
| private:
|
| // Creates a new RootWindowController given |display_spec|, which is the
|
| - // configuration of the display.
|
| + // configuration of the display. On entry |next_x| is the x-coordinate to
|
| + // place the display at, on exit |next_x| is set to the x-coordinate to place
|
| + // the next display at.
|
| RootWindowController* CreateRootWindowController(
|
| - const std::string& display_spec);
|
| + const std::string& display_spec,
|
| + int* next_x);
|
|
|
| - // Updates the display of an existing RootWindowController.
|
| + // Updates the display of an existing RootWindowController. See
|
| + // CreateRootWindowController() for details on |next_x|.
|
| void UpdateDisplay(RootWindowController* root_window_controller,
|
| - const std::string& display_spec);
|
| + const std::string& display_spec,
|
| + int* next_x);
|
|
|
| // Destroys a RootWindowController.
|
| void DestroyRootWindowController(
|
|
|