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

Side by Side Diff: chrome/browser/password_manager/password_manager_unittest.cc

Issue 8437002: Move BrowserThread to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: A few updates. Created 9 years, 1 month 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 | Annotate | Revision Log
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 <vector> 5 #include <vector>
6 6
7 #include "base/message_loop.h" 7 #include "base/message_loop.h"
8 #include "base/string_util.h" 8 #include "base/string_util.h"
9 #include "base/utf_string_conversions.h" 9 #include "base/utf_string_conversions.h"
10 #include "chrome/browser/password_manager/password_manager.h" 10 #include "chrome/browser/password_manager/password_manager.h"
11 #include "chrome/browser/password_manager/password_manager_delegate.h" 11 #include "chrome/browser/password_manager/password_manager_delegate.h"
12 #include "chrome/browser/password_manager/password_store.h" 12 #include "chrome/browser/password_manager/password_store.h"
13 #include "chrome/common/url_constants.h" 13 #include "chrome/common/url_constants.h"
14 #include "chrome/test/base/chrome_render_view_host_test_harness.h" 14 #include "chrome/test/base/chrome_render_view_host_test_harness.h"
15 #include "chrome/test/base/testing_profile.h" 15 #include "chrome/test/base/testing_profile.h"
16 #include "content/browser/tab_contents/test_tab_contents.h" 16 #include "content/browser/tab_contents/test_tab_contents.h"
17 #include "content/test/test_browser_thread.h" 17 #include "content/test/test_browser_thread.h"
18 #include "testing/gmock/include/gmock/gmock.h" 18 #include "testing/gmock/include/gmock/gmock.h"
19 #include "testing/gtest/include/gtest/gtest.h" 19 #include "testing/gtest/include/gtest/gtest.h"
20 20
21 using content::BrowserThread;
21 using webkit_glue::PasswordForm; 22 using webkit_glue::PasswordForm;
22 using testing::_; 23 using testing::_;
23 using testing::DoAll; 24 using testing::DoAll;
24 using ::testing::Exactly; 25 using ::testing::Exactly;
25 using ::testing::WithArg; 26 using ::testing::WithArg;
26 using ::testing::Return; 27 using ::testing::Return;
27 28
28 class MockPasswordManagerDelegate : public PasswordManagerDelegate { 29 class MockPasswordManagerDelegate : public PasswordManagerDelegate {
29 public: 30 public:
30 MOCK_METHOD1(FillPasswordForm, void( 31 MOCK_METHOD1(FillPasswordForm, void(
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 EXPECT_CALL(*store_, GetLogins(_,_)) 274 EXPECT_CALL(*store_, GetLogins(_,_))
274 .WillRepeatedly(DoAll(WithArg<1>(InvokeConsumer(0, result)), Return(0))); 275 .WillRepeatedly(DoAll(WithArg<1>(InvokeConsumer(0, result)), Return(0)));
275 std::vector<PasswordForm> observed; 276 std::vector<PasswordForm> observed;
276 PasswordForm form(MakeSimpleForm()); 277 PasswordForm form(MakeSimpleForm());
277 observed.push_back(form); 278 observed.push_back(form);
278 manager()->OnPasswordFormsFound(observed); // The initial load. 279 manager()->OnPasswordFormsFound(observed); // The initial load.
279 // PasswordFormsVisible is not called. 280 // PasswordFormsVisible is not called.
280 281
281 manager()->DidStopLoading(); 282 manager()->DidStopLoading();
282 } 283 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698