Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Unified Diff: chrome/browser/android/data_usage/tab_data_use_entry_unittest.cc

Issue 2624663002: Changed uses of deque to vector in chrome/browser/android/data_usage. (Closed)
Patch Set: fix bad math Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/android/data_usage/tab_data_use_entry.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/data_usage/tab_data_use_entry_unittest.cc
diff --git a/chrome/browser/android/data_usage/tab_data_use_entry_unittest.cc b/chrome/browser/android/data_usage/tab_data_use_entry_unittest.cc
index e27a123f8f59e476a3bce7bbd721fcbf4c6eaa9f..706f08b62770d4e900244e38b49e395768024c81 100644
--- a/chrome/browser/android/data_usage/tab_data_use_entry_unittest.cc
+++ b/chrome/browser/android/data_usage/tab_data_use_entry_unittest.cc
@@ -163,7 +163,7 @@ class TabDataUseEntryTest : public testing::Test {
};
// Starts a single tracking session and checks if a new active session is added
-// to the deque. Ends the session and checks if it becomes inactive.
+// to the vector. Ends the session and checks if it becomes inactive.
TEST_F(TabDataUseEntryTest, SingleTabSessionStartEnd) {
ExpectTabEntrySessionsSize(TabEntrySessionSize::ZERO);
EXPECT_FALSE(tab_entry_->IsTrackingDataUse());
@@ -178,7 +178,7 @@ TEST_F(TabDataUseEntryTest, SingleTabSessionStartEnd) {
}
// Starts multiple tracking sessions and checks if new active sessions are added
-// to the deque for each. Ends the sessions and checks if they become inactive.
+// to the vector for each. Ends the sessions and checks if they become inactive.
TEST_F(TabDataUseEntryTest, MultipleTabSessionStartEnd) {
ExpectTabEntrySessionsSize(TabEntrySessionSize::ZERO);
EXPECT_FALSE(tab_entry_->IsTrackingDataUse());
« no previous file with comments | « chrome/browser/android/data_usage/tab_data_use_entry.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698