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

Unified Diff: components/password_manager/content/browser/credential_manager_impl_unittest.cc

Issue 2083433002: Mojo: Remove url type converters. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: components/password_manager/content/browser/credential_manager_impl_unittest.cc
diff --git a/components/password_manager/content/browser/credential_manager_impl_unittest.cc b/components/password_manager/content/browser/credential_manager_impl_unittest.cc
index 6c442d9077526e0aef7fd30be18315dc8e1fec49..53e78b8118de70238f8d8ae1f3d7939e652da822 100644
--- a/components/password_manager/content/browser/credential_manager_impl_unittest.cc
+++ b/components/password_manager/content/browser/credential_manager_impl_unittest.cc
@@ -34,7 +34,6 @@
#include "content/public/browser/web_contents.h"
#include "content/public/test/mock_render_process_host.h"
#include "content/public/test/test_renderer_host.h"
-#include "mojo/common/url_type_converters.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -356,8 +355,7 @@ class CredentialManagerImplTest : public content::RenderViewHostTestHarness {
bool include_passwords,
const std::vector<GURL>& federations,
const CredentialManagerImpl::GetCallback& callback) {
- cm_service_impl_->Get(zero_click_only, include_passwords,
- mojo::Array<mojo::String>::From(federations),
+ cm_service_impl_->Get(zero_click_only, include_passwords, federations,
callback);
}

Powered by Google App Engine
This is Rietveld 408576698