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 #include "chrome/test/data/webui/ntp4_test.h" | |
Dan Beam
2012/03/07 22:49:45
you'll want to include those .h files here with 1
Danh Nguyen
2012/03/08 16:44:19
Done.
| |
6 | |
7 NTP4LoggedInWebUITest::NTP4LoggedInWebUITest() {} | |
Dan Beam
2012/03/07 22:49:45
I'm not sure if the end curlie (}) should be on ne
Danh Nguyen
2012/03/08 16:44:19
Cool. I'll keep it this way then.
| |
8 | |
9 NTP4LoggedInWebUITest::~NTP4LoggedInWebUITest() {} | |
10 | |
11 void NTP4LoggedInWebUITest::SetLoginName(const std::string& name) { | |
12 browser()->profile()->GetPrefs()->SetString(prefs::kGoogleServicesUsername, | |
13 name); | |
14 } | |
OLD | NEW |