| Index: ash/test/test_session_state_delegate.h
|
| diff --git a/ash/test/test_session_state_delegate.h b/ash/test/test_session_state_delegate.h
|
| index 8c26c8884d5438ded85dab7a5613af5c8e41ffd6..1277a068d4334777bda8d9073cb0a2116d40e4b1 100644
|
| --- a/ash/test/test_session_state_delegate.h
|
| +++ b/ash/test/test_session_state_delegate.h
|
| @@ -46,9 +46,6 @@ class TestSessionStateDelegate : public SessionStateDelegate {
|
| ash::SessionStateObserver* observer) OVERRIDE;
|
| virtual void RemoveSessionStateObserver(
|
| ash::SessionStateObserver* observer) OVERRIDE;
|
| - virtual bool TransferWindowToDesktopOfUser(
|
| - aura::Window* window,
|
| - ash::MultiProfileIndex index) OVERRIDE;
|
|
|
| // TODO(oshima): Use state machine instead of using boolean variables.
|
|
|
| @@ -76,11 +73,6 @@ class TestSessionStateDelegate : public SessionStateDelegate {
|
| // running now.
|
| void SetUserAddingScreenRunning(bool user_adding_screen_running);
|
|
|
| - // Returns the number of calls to TransferWindowToDesktopOfUser.
|
| - int num_transfer_to_desktop_of_user_calls() {
|
| - return num_transfer_to_desktop_of_user_calls_;
|
| - }
|
| -
|
| private:
|
| // Whether a session is in progress and there is an active user.
|
| bool has_active_user_;
|
| @@ -112,9 +104,6 @@ class TestSessionStateDelegate : public SessionStateDelegate {
|
| // A test user image.
|
| gfx::ImageSkia null_image_;
|
|
|
| - // The number of calls which happened to TransferWindowToDesktopOfUser.
|
| - int num_transfer_to_desktop_of_user_calls_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(TestSessionStateDelegate);
|
| };
|
|
|
|
|