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

Side by Side Diff: content/browser/download/download_id_unittest.cc

Issue 8503018: Split DownloadItem into an ABC, an Impl, and a Mock. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: merge Created 9 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 "content/browser/download/download_id.h" 5 #include "content/browser/download/download_id.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/memory/scoped_ptr.h"
12 #include "content/browser/browser_thread_impl.h" 13 #include "content/browser/browser_thread_impl.h"
13 #include "content/browser/download/mock_download_manager.h" 14 #include "content/browser/download/mock_download_manager.h"
14 #include "content/browser/download/mock_download_manager_delegate.h" 15 #include "content/browser/download/mock_download_manager_delegate.h"
15 #include "testing/gtest/include/gtest/gtest.h" 16 #include "testing/gtest/include/gtest/gtest.h"
16 17
17 using content::BrowserThread; 18 using content::BrowserThread;
18 using content::BrowserThreadImpl; 19 using content::BrowserThreadImpl;
19 20
20 class DownloadIdTest : public testing::Test { 21 class DownloadIdTest : public testing::Test {
21 public: 22 public:
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 EXPECT_EQ(kLocalId[2], map[id3]); 146 EXPECT_EQ(kLocalId[2], map[id3]);
146 last = map.end(); 147 last = map.end();
147 EXPECT_FALSE(last == map.find(id1)); 148 EXPECT_FALSE(last == map.find(id1));
148 EXPECT_FALSE(last == map.find(id2)); 149 EXPECT_FALSE(last == map.find(id2));
149 EXPECT_FALSE(last == map.find(id3)); 150 EXPECT_FALSE(last == map.find(id3));
150 151
151 EXPECT_FALSE(id1 == id2); 152 EXPECT_FALSE(id1 == id2);
152 EXPECT_LT(id1, id2); 153 EXPECT_LT(id1, id2);
153 } 154 }
154 155
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/downloads_dom_handler.cc ('k') | content/browser/download/download_item.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698