OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef ASH_TEST_TEST_SHELL_DELEGATE_H_ | 5 #ifndef ASH_TEST_TEST_SHELL_DELEGATE_H_ |
6 #define ASH_TEST_TEST_SHELL_DELEGATE_H_ | 6 #define ASH_TEST_TEST_SHELL_DELEGATE_H_ |
7 | 7 |
8 #include "ash/shell_delegate.h" | 8 #include "ash/shell_delegate.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 virtual void RecordUserMetricsAction(UserMetricsAction action) OVERRIDE; | 61 virtual void RecordUserMetricsAction(UserMetricsAction action) OVERRIDE; |
62 virtual void HandleMediaNextTrack() OVERRIDE; | 62 virtual void HandleMediaNextTrack() OVERRIDE; |
63 virtual void HandleMediaPlayPause() OVERRIDE; | 63 virtual void HandleMediaPlayPause() OVERRIDE; |
64 virtual void HandleMediaPrevTrack() OVERRIDE; | 64 virtual void HandleMediaPrevTrack() OVERRIDE; |
65 virtual string16 GetTimeRemainingString(base::TimeDelta delta) OVERRIDE; | 65 virtual string16 GetTimeRemainingString(base::TimeDelta delta) OVERRIDE; |
66 virtual string16 GetTimeDurationLongString(base::TimeDelta delta) OVERRIDE; | 66 virtual string16 GetTimeDurationLongString(base::TimeDelta delta) OVERRIDE; |
67 virtual void SaveScreenMagnifierScale(double scale) OVERRIDE; | 67 virtual void SaveScreenMagnifierScale(double scale) OVERRIDE; |
68 virtual double GetSavedScreenMagnifierScale() OVERRIDE; | 68 virtual double GetSavedScreenMagnifierScale() OVERRIDE; |
69 virtual ui::MenuModel* CreateContextMenu(aura::RootWindow* root) OVERRIDE; | 69 virtual ui::MenuModel* CreateContextMenu(aura::RootWindow* root) OVERRIDE; |
70 virtual RootWindowHostFactory* CreateRootWindowHostFactory() OVERRIDE; | 70 virtual RootWindowHostFactory* CreateRootWindowHostFactory() OVERRIDE; |
| 71 virtual string16 GetProductName() const OVERRIDE; |
71 | 72 |
72 int num_exit_requests() const { return num_exit_requests_; } | 73 int num_exit_requests() const { return num_exit_requests_; } |
73 private: | 74 private: |
74 friend class ash::test::AshTestBase; | 75 friend class ash::test::AshTestBase; |
75 | 76 |
76 // Given |session_started| will update internal state. | 77 // Given |session_started| will update internal state. |
77 // If |session_started| is true this method will also set | 78 // If |session_started| is true this method will also set |
78 // |user_logged_in_| to true. | 79 // |user_logged_in_| to true. |
79 // When session is started it always means that user has logged in. | 80 // When session is started it always means that user has logged in. |
80 // Possible situation is that user has already logged in but session has not | 81 // Possible situation is that user has already logged in but session has not |
(...skipping 22 matching lines...) Expand all Loading... |
103 | 104 |
104 scoped_ptr<content::BrowserContext> current_browser_context_; | 105 scoped_ptr<content::BrowserContext> current_browser_context_; |
105 | 106 |
106 DISALLOW_COPY_AND_ASSIGN(TestShellDelegate); | 107 DISALLOW_COPY_AND_ASSIGN(TestShellDelegate); |
107 }; | 108 }; |
108 | 109 |
109 } // namespace test | 110 } // namespace test |
110 } // namespace ash | 111 } // namespace ash |
111 | 112 |
112 #endif // ASH_TEST_TEST_SHELL_DELEGATE_H_ | 113 #endif // ASH_TEST_TEST_SHELL_DELEGATE_H_ |
OLD | NEW |