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

Side by Side Diff: content/browser/download/save_package_browsertest.cc

Issue 638503002: Replacing the OVERRIDE with override and FINAL with final in content/browser/[download|… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/files/scoped_temp_dir.h" 5 #include "base/files/scoped_temp_dir.h"
6 #include "content/browser/download/save_package.h" 6 #include "content/browser/download/save_package.h"
7 #include "content/public/test/content_browser_test.h" 7 #include "content/public/test/content_browser_test.h"
8 #include "content/public/test/content_browser_test_utils.h" 8 #include "content/public/test/content_browser_test_utils.h"
9 #include "content/shell/browser/shell.h" 9 #include "content/shell/browser/shell.h"
10 10
11 namespace content { 11 namespace content {
12 12
13 const char kTestFile[] = "files/simple_page.html"; 13 const char kTestFile[] = "files/simple_page.html";
14 14
15 class SavePackageBrowserTest : public ContentBrowserTest { 15 class SavePackageBrowserTest : public ContentBrowserTest {
16 protected: 16 protected:
17 virtual void SetUp() OVERRIDE { 17 virtual void SetUp() override {
18 ASSERT_TRUE(save_dir_.CreateUniqueTempDir()); 18 ASSERT_TRUE(save_dir_.CreateUniqueTempDir());
19 ContentBrowserTest::SetUp(); 19 ContentBrowserTest::SetUp();
20 } 20 }
21 21
22 // Returns full paths of destination file and directory. 22 // Returns full paths of destination file and directory.
23 void GetDestinationPaths(const std::string& prefix, 23 void GetDestinationPaths(const std::string& prefix,
24 base::FilePath* full_file_name, 24 base::FilePath* full_file_name,
25 base::FilePath* dir) { 25 base::FilePath* dir) {
26 *full_file_name = save_dir_.path().AppendASCII(prefix + ".htm"); 26 *full_file_name = save_dir_.path().AppendASCII(prefix + ".htm");
27 *dir = save_dir_.path().AppendASCII(prefix + "_files"); 27 *dir = save_dir_.path().AppendASCII(prefix + "_files");
(...skipping 26 matching lines...) Expand all
54 base::FilePath full_file_name, dir; 54 base::FilePath full_file_name, dir;
55 GetDestinationPaths("a", &full_file_name, &dir); 55 GetDestinationPaths("a", &full_file_name, &dir);
56 scoped_refptr<SavePackage> save_package(new SavePackage( 56 scoped_refptr<SavePackage> save_package(new SavePackage(
57 shell()->web_contents(), SAVE_PAGE_TYPE_AS_ONLY_HTML, full_file_name, 57 shell()->web_contents(), SAVE_PAGE_TYPE_AS_ONLY_HTML, full_file_name,
58 dir)); 58 dir));
59 save_package->Cancel(true); 59 save_package->Cancel(true);
60 ASSERT_TRUE(test_server()->Stop()); 60 ASSERT_TRUE(test_server()->Stop());
61 } 61 }
62 62
63 } // namespace content 63 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/download/save_package.cc ('k') | content/browser/loader/async_resource_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698