| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "base/compiler_specific.h" | 5 #include "base/compiler_specific.h" |
| 6 #include "base/string_util.h" | 6 #include "base/string_util.h" |
| 7 #include "base/utf_string_conversions.h" | 7 #include "base/utf_string_conversions.h" |
| 8 #include "chrome/browser/status_icons/status_icon.h" | 8 #include "chrome/browser/status_icons/status_icon.h" |
| 9 #include "chrome/browser/status_icons/status_tray.h" | 9 #include "chrome/browser/status_icons/status_tray.h" |
| 10 #include "testing/gmock/include/gmock/gmock.h" | 10 #include "testing/gmock/include/gmock/gmock.h" |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 // Make sure that removing an icon removes it from the list. | 39 // Make sure that removing an icon removes it from the list. |
| 40 TEST(StatusTrayTest, CreateRemove) { | 40 TEST(StatusTrayTest, CreateRemove) { |
| 41 TestStatusTray tray; | 41 TestStatusTray tray; |
| 42 EXPECT_CALL(tray, | 42 EXPECT_CALL(tray, |
| 43 CreatePlatformStatusIcon()).WillOnce(Return(new MockStatusIcon())); | 43 CreatePlatformStatusIcon()).WillOnce(Return(new MockStatusIcon())); |
| 44 StatusIcon* icon = tray.CreateStatusIcon(); | 44 StatusIcon* icon = tray.CreateStatusIcon(); |
| 45 EXPECT_EQ(1U, tray.status_icons_.size()); | 45 EXPECT_EQ(1U, tray.status_icons_.size()); |
| 46 tray.RemoveStatusIcon(icon); | 46 tray.RemoveStatusIcon(icon); |
| 47 EXPECT_EQ(0U, tray.status_icons_.size()); | 47 EXPECT_EQ(0U, tray.status_icons_.size()); |
| 48 // Calling again should do nothing. | |
| 49 tray.RemoveStatusIcon(icon); | |
| 50 } | 48 } |
| OLD | NEW |