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

Side by Side Diff: chrome/test/base/chrome_render_view_test.h

Issue 2274783002: Revert of [Autofill] Migrate ContentPasswordManagerDriver<-->Password{Autofill,Generation}Agent IPCs to mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 #ifndef CHROME_TEST_BASE_CHROME_RENDER_VIEW_TEST_H_ 5 #ifndef CHROME_TEST_BASE_CHROME_RENDER_VIEW_TEST_H_
6 #define CHROME_TEST_BASE_CHROME_RENDER_VIEW_TEST_H_ 6 #define CHROME_TEST_BASE_CHROME_RENDER_VIEW_TEST_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 10
(...skipping 18 matching lines...) Expand all
29 ~ChromeRenderViewTest() override; 29 ~ChromeRenderViewTest() override;
30 30
31 protected: 31 protected:
32 // testing::Test 32 // testing::Test
33 void SetUp() override; 33 void SetUp() override;
34 void TearDown() override; 34 void TearDown() override;
35 content::ContentClient* CreateContentClient() override; 35 content::ContentClient* CreateContentClient() override;
36 content::ContentBrowserClient* CreateContentBrowserClient() override; 36 content::ContentBrowserClient* CreateContentBrowserClient() override;
37 content::ContentRendererClient* CreateContentRendererClient() override; 37 content::ContentRendererClient* CreateContentRendererClient() override;
38 38
39 // Called from SetUp(). Override to register mojo interfaces.
40 virtual void RegisterMainFrameRemoteInterfaces();
41
42 // Initializes commonly needed global state and renderer client parts. 39 // Initializes commonly needed global state and renderer client parts.
43 // Use when overriding CreateContentRendererClient. 40 // Use when overriding CreateContentRendererClient.
44 void InitChromeContentRendererClient(ChromeContentRendererClient* client); 41 void InitChromeContentRendererClient(ChromeContentRendererClient* client);
45 42
46 void EnableUserGestureSimulationForAutofill(); 43 void EnableUserGestureSimulationForAutofill();
47 void DisableUserGestureSimulationForAutofill(); 44 void DisableUserGestureSimulationForAutofill();
48 void WaitForAutofillDidAssociateFormControl(); 45 void WaitForAutofillDidAssociateFormControl();
49 46
50 #if defined(ENABLE_EXTENSIONS) 47 #if defined(ENABLE_EXTENSIONS)
51 std::unique_ptr<extensions::DispatcherDelegate> 48 std::unique_ptr<extensions::DispatcherDelegate>
52 extension_dispatcher_delegate_; 49 extension_dispatcher_delegate_;
53 #endif 50 #endif
54 51
55 autofill::TestPasswordAutofillAgent* password_autofill_agent_; 52 autofill::TestPasswordAutofillAgent* password_autofill_agent_;
56 autofill::TestPasswordGenerationAgent* password_generation_; 53 autofill::TestPasswordGenerationAgent* password_generation_;
57 autofill::AutofillAgent* autofill_agent_; 54 autofill::AutofillAgent* autofill_agent_;
58 55
59 // Naked pointer as ownership is with content::RenderViewTest::render_thread_. 56 // Naked pointer as ownership is with content::RenderViewTest::render_thread_.
60 ChromeMockRenderThread* chrome_render_thread_; 57 ChromeMockRenderThread* chrome_render_thread_;
61 }; 58 };
62 59
63 #endif // CHROME_TEST_BASE_CHROME_RENDER_VIEW_TEST_H_ 60 #endif // CHROME_TEST_BASE_CHROME_RENDER_VIEW_TEST_H_
OLDNEW
« no previous file with comments | « chrome/renderer/autofill/password_generation_test_utils.cc ('k') | chrome/test/base/chrome_render_view_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698