| 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 "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 Loading... |
| 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 |
| OLD | NEW |