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

Side by Side Diff: chrome/browser/visitedlink_master.h

Issue 3179017: FBTF: Remove "obviously" unneeded standard C++ library #includes. (Closed)
Patch Set: fixed mac oopsie Created 10 years, 4 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #pragma once 7 #pragma once
8 8
9 #if defined(OS_WIN) 9 #if defined(OS_WIN)
10 #include <windows.h> 10 #include <windows.h>
11 #endif 11 #endif
12 #include <set> 12 #include <set>
13 #include <string>
14 #include <vector> 13 #include <vector>
15 14
16 #include "base/file_path.h" 15 #include "base/file_path.h"
17 #include "base/gtest_prod_util.h" 16 #include "base/gtest_prod_util.h"
18 #include "base/ref_counted.h" 17 #include "base/ref_counted.h"
19 #include "base/shared_memory.h" 18 #include "base/shared_memory.h"
20 #include "chrome/browser/history/history.h" 19 #include "chrome/browser/history/history.h"
21 #include "chrome/common/visitedlink_common.h" 20 #include "chrome/common/visitedlink_common.h"
22 21
23 class GURL; 22 class GURL;
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 int32 used_count = 0; 379 int32 used_count = 0;
381 for (int32 i = 0; i < table_length_; i++) { 380 for (int32 i = 0; i < table_length_; i++) {
382 if (hash_table_[i]) 381 if (hash_table_[i])
383 used_count++; 382 used_count++;
384 } 383 }
385 DCHECK_EQ(used_count, used_items_); 384 DCHECK_EQ(used_count, used_items_);
386 } 385 }
387 #endif 386 #endif
388 387
389 #endif // CHROME_BROWSER_VISITEDLINK_MASTER_H__ 388 #endif // CHROME_BROWSER_VISITEDLINK_MASTER_H__
OLDNEW
« no previous file with comments | « chrome/browser/views/tabs/tab_strip_controller.h ('k') | chrome/browser/webdata/web_data_service_test_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698