| 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 <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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |