| 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 // Implementation of the SafeBrowsingBlockingPage class. | 5 // Implementation of the SafeBrowsingBlockingPage class. |
| 6 | 6 |
| 7 #include "chrome/browser/safe_browsing/safe_browsing_blocking_page.h" | 7 #include "chrome/browser/safe_browsing/safe_browsing_blocking_page.h" |
| 8 | 8 |
| 9 #include "chrome/app/locales/locale_settings.h" | 9 #include "chrome/app/locales/locale_settings.h" |
| 10 #include "chrome/browser/browser_process.h" | 10 #include "chrome/browser/browser_process.h" |
| (...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 | 323 |
| 324 base::Thread* io_thread = g_browser_process->io_thread(); | 324 base::Thread* io_thread = g_browser_process->io_thread(); |
| 325 if (!io_thread) | 325 if (!io_thread) |
| 326 return; | 326 return; |
| 327 | 327 |
| 328 io_thread->message_loop()->PostTask(FROM_HERE, NewRunnableMethod( | 328 io_thread->message_loop()->PostTask(FROM_HERE, NewRunnableMethod( |
| 329 sb_service_, | 329 sb_service_, |
| 330 &SafeBrowsingService::OnBlockingPageDone, | 330 &SafeBrowsingService::OnBlockingPageDone, |
| 331 this, client_, proceed_)); | 331 this, client_, proceed_)); |
| 332 } | 332 } |
| 333 | |
| OLD | NEW |