OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_TEST_DATA_WEBUI_NTP4_BROWSERTEST_H_ | |
6 #define CHROME_TEST_DATA_WEBUI_NTP4_BROWSERTEST_H_ | |
7 #pragma once | |
8 | |
9 #include "chrome/browser/ui/webui/web_ui_browsertest.h" | |
10 | |
11 class NTP4LoggedInWebUITest : public WebUIBrowserTest { | |
12 public: | |
13 NTP4LoggedInWebUITest(); | |
14 virtual ~NTP4LoggedInWebUITest(); | |
15 | |
16 protected: | |
17 // Sets the user name into the profile as if the user had logged in. | |
Dan Beam
2012/03/08 17:58:33
in the profile? (vs. into)
Danh Nguyen
2012/03/08 18:46:14
Done. Thanks Dan.
| |
18 void SetLoginName(const std::string& loginName); | |
19 | |
20 private: | |
21 DISALLOW_COPY_AND_ASSIGN(NTP4LoggedInWebUITest); | |
22 }; | |
23 | |
24 #endif // CHROME_TEST_DATA_WEBUI_NTP4_BROWSERTEST_H_ | |
OLD | NEW |