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

Side by Side Diff: chrome/browser/extensions/webstore_inline_installer_unittest.cc

Issue 666153002: Standardize usage of virtual/override/final in chrome/browser/extensions/ (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) 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 <vector> 5 #include <vector>
6 6
7 #include "chrome/browser/extensions/webstore_inline_installer.h" 7 #include "chrome/browser/extensions/webstore_inline_installer.h"
8 #include "chrome/common/extensions/webstore_install_result.h" 8 #include "chrome/common/extensions/webstore_install_result.h"
9 #include "chrome/test/base/chrome_render_view_host_test_harness.h" 9 #include "chrome/test/base/chrome_render_view_host_test_harness.h"
10 #include "content/public/browser/web_contents.h" 10 #include "content/public/browser/web_contents.h"
(...skipping 10 matching lines...) Expand all
21 public: 21 public:
22 explicit TestWebstoreInlineInstaller(content::WebContents* contents, 22 explicit TestWebstoreInlineInstaller(content::WebContents* contents,
23 const std::string& requestor_url); 23 const std::string& requestor_url);
24 24
25 bool TestCheckRequestorPermitted(const base::DictionaryValue& webstore_data) { 25 bool TestCheckRequestorPermitted(const base::DictionaryValue& webstore_data) {
26 std::string error; 26 std::string error;
27 return CheckRequestorPermitted(webstore_data, &error); 27 return CheckRequestorPermitted(webstore_data, &error);
28 } 28 }
29 29
30 protected: 30 protected:
31 virtual ~TestWebstoreInlineInstaller(); 31 ~TestWebstoreInlineInstaller() override;
32 }; 32 };
33 33
34 void TestInstallerCallback(bool success, 34 void TestInstallerCallback(bool success,
35 const std::string& error, 35 const std::string& error,
36 webstore_install::Result result) {} 36 webstore_install::Result result) {}
37 37
38 TestWebstoreInlineInstaller::TestWebstoreInlineInstaller( 38 TestWebstoreInlineInstaller::TestWebstoreInlineInstaller(
39 content::WebContents* contents, 39 content::WebContents* contents,
40 const std::string& requestor_url) 40 const std::string& requestor_url)
41 : WebstoreInlineInstaller(contents, 41 : WebstoreInlineInstaller(contents,
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 verified_sites)); 218 verified_sites));
219 219
220 EXPECT_FALSE(TestMultipleVerifiedSites("http://baz.example.com", 220 EXPECT_FALSE(TestMultipleVerifiedSites("http://baz.example.com",
221 verified_sites)); 221 verified_sites));
222 222
223 EXPECT_FALSE(TestMultipleVerifiedSites("http://bar.example.com:456", 223 EXPECT_FALSE(TestMultipleVerifiedSites("http://bar.example.com:456",
224 verified_sites)); 224 verified_sites));
225 } 225 }
226 226
227 } // namespace extensions 227 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698