OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/file_path.h" | 5 #include "base/file_path.h" |
6 #include "base/file_util.h" | 6 #include "base/file_util.h" |
7 #include "base/path_service.h" | 7 #include "base/path_service.h" |
8 #include "base/scoped_temp_dir.h" | 8 #include "base/scoped_temp_dir.h" |
9 #include "chrome/app/chrome_command_ids.h" | 9 #include "chrome/app/chrome_command_ids.h" |
10 #include "chrome/browser/browser.h" | |
11 #include "chrome/browser/browser_window.h" | 10 #include "chrome/browser/browser_window.h" |
12 #include "chrome/browser/net/url_request_mock_http_job.h" | 11 #include "chrome/browser/net/url_request_mock_http_job.h" |
13 #include "chrome/browser/tab_contents/tab_contents.h" | 12 #include "chrome/browser/tab_contents/tab_contents.h" |
| 13 #include "chrome/browser/ui/browser.h" |
14 #include "chrome/common/chrome_paths.h" | 14 #include "chrome/common/chrome_paths.h" |
15 #include "chrome/common/notification_service.h" | 15 #include "chrome/common/notification_service.h" |
16 #include "chrome/common/url_constants.h" | 16 #include "chrome/common/url_constants.h" |
17 #include "chrome/test/in_process_browser_test.h" | 17 #include "chrome/test/in_process_browser_test.h" |
18 #include "chrome/test/ui_test_utils.h" | 18 #include "chrome/test/ui_test_utils.h" |
19 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
20 | 20 |
21 namespace { | 21 namespace { |
22 | 22 |
23 static const FilePath::CharType* kTestDir = FILE_PATH_LITERAL("save_page"); | 23 static const FilePath::CharType* kTestDir = FILE_PATH_LITERAL("save_page"); |
(...skipping 151 matching lines...) Loading... |
175 full_file_name)); | 175 full_file_name)); |
176 EXPECT_TRUE(file_util::ContentsEqual( | 176 EXPECT_TRUE(file_util::ContentsEqual( |
177 test_dir_.Append(FilePath(kTestDir)).AppendASCII("1.png"), | 177 test_dir_.Append(FilePath(kTestDir)).AppendASCII("1.png"), |
178 dir.AppendASCII("1.png"))); | 178 dir.AppendASCII("1.png"))); |
179 EXPECT_TRUE(file_util::ContentsEqual( | 179 EXPECT_TRUE(file_util::ContentsEqual( |
180 test_dir_.Append(FilePath(kTestDir)).AppendASCII("1.css"), | 180 test_dir_.Append(FilePath(kTestDir)).AppendASCII("1.css"), |
181 dir.AppendASCII("1.css"))); | 181 dir.AppendASCII("1.css"))); |
182 } | 182 } |
183 | 183 |
184 } // namespace | 184 } // namespace |
OLD | NEW |