OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 CHROME_BROWSER_VISITEDLINK_MASTER_H__ | 5 #ifndef CHROME_BROWSER_VISITEDLINK_MASTER_H__ |
6 #define CHROME_BROWSER_VISITEDLINK_MASTER_H__ | 6 #define CHROME_BROWSER_VISITEDLINK_MASTER_H__ |
7 | 7 |
| 8 #include <windows.h> |
8 #include <set> | 9 #include <set> |
9 #include <string> | 10 #include <string> |
10 #include <vector> | 11 #include <vector> |
11 | 12 |
12 #include "base/ref_counted.h" | 13 #include "base/ref_counted.h" |
13 #include "base/shared_memory.h" | 14 #include "base/shared_memory.h" |
14 #include "chrome/browser/history/history.h" | 15 #include "chrome/browser/history/history.h" |
15 #include "chrome/common/visitedlink_common.h" | 16 #include "chrome/common/visitedlink_common.h" |
16 #include "testing/gtest/include/gtest/gtest_prod.h" | 17 #include "testing/gtest/include/gtest/gtest_prod.h" |
17 | 18 |
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
377 for (int32 i = 0; i < table_length_; i++) { | 378 for (int32 i = 0; i < table_length_; i++) { |
378 if (hash_table_[i]) | 379 if (hash_table_[i]) |
379 used_count++; | 380 used_count++; |
380 } | 381 } |
381 DCHECK(used_count == used_items_); | 382 DCHECK(used_count == used_items_); |
382 } | 383 } |
383 #endif | 384 #endif |
384 | 385 |
385 #endif // CHROME_BROWSER_VISITEDLINK_MASTER_H__ | 386 #endif // CHROME_BROWSER_VISITEDLINK_MASTER_H__ |
386 | 387 |
OLD | NEW |