| 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 #include "chrome/browser/visitedlink_master.h" | 5 #include "chrome/browser/visitedlink_master.h" |
| 6 | 6 |
| 7 #if defined(OS_WIN) | 7 #if defined(OS_WIN) |
| 8 #include <windows.h> | 8 #include <windows.h> |
| 9 #include <io.h> | 9 #include <io.h> |
| 10 #include <shlobj.h> | 10 #include <shlobj.h> |
| 11 #endif // defined(OS_WIN) | 11 #endif // defined(OS_WIN) |
| 12 #include <stdio.h> | 12 #include <stdio.h> |
| 13 | 13 |
| 14 #include <algorithm> | 14 #include <algorithm> |
| 15 | 15 |
| 16 #if defined(OS_WIN) | |
| 17 #include "app/win_util.h" | |
| 18 #endif | |
| 19 #include "base/file_util.h" | 16 #include "base/file_util.h" |
| 20 #include "base/logging.h" | 17 #include "base/logging.h" |
| 21 #include "base/message_loop.h" | 18 #include "base/message_loop.h" |
| 22 #include "base/path_service.h" | 19 #include "base/path_service.h" |
| 23 #include "base/process_util.h" | 20 #include "base/process_util.h" |
| 24 #include "base/rand_util.h" | 21 #include "base/rand_util.h" |
| 25 #include "base/stack_container.h" | 22 #include "base/stack_container.h" |
| 26 #include "base/string_util.h" | 23 #include "base/string_util.h" |
| 27 #include "chrome/browser/browser_process.h" | 24 #include "chrome/browser/browser_process.h" |
| 28 #include "chrome/browser/chrome_thread.h" | 25 #include "chrome/browser/chrome_thread.h" |
| (...skipping 966 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 995 } | 992 } |
| 996 | 993 |
| 997 void VisitedLinkMaster::TableBuilder::OnCompleteMainThread() { | 994 void VisitedLinkMaster::TableBuilder::OnCompleteMainThread() { |
| 998 if (master_) | 995 if (master_) |
| 999 master_->OnTableRebuildComplete(success_, fingerprints_); | 996 master_->OnTableRebuildComplete(success_, fingerprints_); |
| 1000 | 997 |
| 1001 // WILL (generally) DELETE THIS! This balances the AddRef in | 998 // WILL (generally) DELETE THIS! This balances the AddRef in |
| 1002 // VisitedLinkMaster::RebuildTableFromHistory. | 999 // VisitedLinkMaster::RebuildTableFromHistory. |
| 1003 Release(); | 1000 Release(); |
| 1004 } | 1001 } |
| OLD | NEW |