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

Side by Side Diff: chrome/browser/devtools/device/webrtc/devtools_bridge_client_browsertest.h

Issue 1257623002: Componentize FakeSigninManager and SigninManager prefs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comment Created 5 years, 5 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_BROWSER_DEVTOOLS_DEVICE_WEBRTC_DEVTOOLS_BRIDGE_CLIENT_BROWSERTEST _H_ 5 #ifndef CHROME_BROWSER_DEVTOOLS_DEVICE_WEBRTC_DEVTOOLS_BRIDGE_CLIENT_BROWSERTEST _H_
6 #define CHROME_BROWSER_DEVTOOLS_DEVICE_WEBRTC_DEVTOOLS_BRIDGE_CLIENT_BROWSERTEST _H_ 6 #define CHROME_BROWSER_DEVTOOLS_DEVICE_WEBRTC_DEVTOOLS_BRIDGE_CLIENT_BROWSERTEST _H_
7 7
8 #include "chrome/browser/signin/fake_signin_manager.h" 8 #include "chrome/browser/signin/fake_signin_manager_builder.h"
9 #include "chrome/test/base/web_ui_browser_test.h" 9 #include "chrome/test/base/web_ui_browser_test.h"
10 10
11 class ProfileOAuth2TokenService; 11 class ProfileOAuth2TokenService;
12 12
13 namespace content { 13 namespace content {
14 class WebUIMessageHandler; 14 class WebUIMessageHandler;
15 } 15 }
16 16
17 class DevToolsBridgeClientBrowserTest : public WebUIBrowserTest { 17 class DevToolsBridgeClientBrowserTest : public WebUIBrowserTest {
18 public: 18 public:
(...skipping 12 matching lines...) Expand all
31 31
32 scoped_ptr<FakeSigninManagerForTesting> fake_signin_manager_; 32 scoped_ptr<FakeSigninManagerForTesting> fake_signin_manager_;
33 scoped_ptr<ProfileOAuth2TokenService> fake_token_service_; 33 scoped_ptr<ProfileOAuth2TokenService> fake_token_service_;
34 base::WeakPtr<DevToolsBridgeClientMock> client_mock_; 34 base::WeakPtr<DevToolsBridgeClientMock> client_mock_;
35 scoped_ptr<MessageHandler> handler_; 35 scoped_ptr<MessageHandler> handler_;
36 std::map<int, GCDApiFlowMock*> flows_; 36 std::map<int, GCDApiFlowMock*> flows_;
37 int last_flow_id_; 37 int last_flow_id_;
38 }; 38 };
39 39
40 #endif // CHROME_BROWSER_DEVTOOLS_DEVICE_WEBRTC_DEVTOOLS_BRIDGE_CLIENT_BROWSERT EST_H_ 40 #endif // CHROME_BROWSER_DEVTOOLS_DEVICE_WEBRTC_DEVTOOLS_BRIDGE_CLIENT_BROWSERT EST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698