| OLD | NEW | 
|    1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |    1 // Copyright (c) 2012 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 "base/bind.h" |    5 #include "base/bind.h" | 
|    6 #include "base/bind_helpers.h" |    6 #include "base/bind_helpers.h" | 
|    7 #include "base/command_line.h" |    7 #include "base/command_line.h" | 
|    8 #include "base/file_path.h" |    8 #include "base/file_path.h" | 
|    9 #include "base/file_util.h" |    9 #include "base/file_util.h" | 
|   10 #include "base/path_service.h" |   10 #include "base/path_service.h" | 
|   11 #include "base/scoped_temp_dir.h" |   11 #include "base/scoped_temp_dir.h" | 
|   12 #include "base/test/test_file_util.h" |   12 #include "base/test/test_file_util.h" | 
|   13 #include "chrome/app/chrome_command_ids.h" |   13 #include "chrome/app/chrome_command_ids.h" | 
 |   14 #include "chrome/browser/api/prefs/pref_member.h" | 
|   14 #include "chrome/browser/download/chrome_download_manager_delegate.h" |   15 #include "chrome/browser/download/chrome_download_manager_delegate.h" | 
|   15 #include "chrome/browser/download/download_history.h" |   16 #include "chrome/browser/download/download_history.h" | 
|   16 #include "chrome/browser/download/download_prefs.h" |   17 #include "chrome/browser/download/download_prefs.h" | 
|   17 #include "chrome/browser/download/download_service.h" |   18 #include "chrome/browser/download/download_service.h" | 
|   18 #include "chrome/browser/download/download_service_factory.h" |   19 #include "chrome/browser/download/download_service_factory.h" | 
|   19 #include "chrome/browser/net/url_request_mock_util.h" |   20 #include "chrome/browser/net/url_request_mock_util.h" | 
|   20 #include "chrome/browser/prefs/pref_member.h" |  | 
|   21 #include "chrome/browser/prefs/pref_service.h" |   21 #include "chrome/browser/prefs/pref_service.h" | 
|   22 #include "chrome/browser/profiles/profile.h" |   22 #include "chrome/browser/profiles/profile.h" | 
|   23 #include "chrome/browser/ui/browser.h" |   23 #include "chrome/browser/ui/browser.h" | 
|   24 #include "chrome/browser/ui/browser_commands.h" |   24 #include "chrome/browser/ui/browser_commands.h" | 
|   25 #include "chrome/browser/ui/browser_tabstrip.h" |   25 #include "chrome/browser/ui/browser_tabstrip.h" | 
|   26 #include "chrome/browser/ui/browser_window.h" |   26 #include "chrome/browser/ui/browser_window.h" | 
|   27 #include "chrome/common/chrome_paths.h" |   27 #include "chrome/common/chrome_paths.h" | 
|   28 #include "chrome/common/chrome_switches.h" |   28 #include "chrome/common/chrome_switches.h" | 
|   29 #include "chrome/common/pref_names.h" |   29 #include "chrome/common/pref_names.h" | 
|   30 #include "chrome/common/url_constants.h" |   30 #include "chrome/common/url_constants.h" | 
| (...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  408         content::NotificationService::AllSources()); |  408         content::NotificationService::AllSources()); | 
|  409   chrome::SavePage(browser()); |  409   chrome::SavePage(browser()); | 
|  410   observer.Wait(); |  410   observer.Wait(); | 
|  411   CheckDownloadHistory(url, full_file_name, -1); |  411   CheckDownloadHistory(url, full_file_name, -1); | 
|  412  |  412  | 
|  413   EXPECT_TRUE(file_util::PathExists(full_file_name)); |  413   EXPECT_TRUE(file_util::PathExists(full_file_name)); | 
|  414   int64 actual_file_size = -1; |  414   int64 actual_file_size = -1; | 
|  415   EXPECT_TRUE(file_util::GetFileSize(full_file_name, &actual_file_size)); |  415   EXPECT_TRUE(file_util::GetFileSize(full_file_name, &actual_file_size)); | 
|  416   EXPECT_LE(kFileSizeMin, actual_file_size); |  416   EXPECT_LE(kFileSizeMin, actual_file_size); | 
|  417 } |  417 } | 
| OLD | NEW |