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