OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 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 "base/files/file_path.h" | |
6 #include "base/files/file_util.h" | |
7 #include "chrome/test/remoting/remote_desktop_browsertest.h" | |
8 #include "chrome/test/remoting/waiter.h" | |
kelvinp
2015/01/08 22:54:40
I think you can remove all the includes except
#i
Jamie
2015/01/08 23:43:08
Done.
| |
9 | |
10 namespace remoting { | |
11 | |
12 class UnauthenticatedBrowserTest : public RemoteDesktopBrowserTest { | |
13 }; | |
14 | |
15 IN_PROC_BROWSER_TEST_F(UnauthenticatedBrowserTest, MANUAL_Unauthenticated) { | |
16 Install(); | |
17 LaunchChromotingApp(true); | |
18 LoadBrowserTestJavaScript(); | |
19 | |
20 content::WebContents* content = app_web_content(); | |
21 LoadScript(content, FILE_PATH_LITERAL("unauthenticated_browser_test.js")); | |
22 RunJavaScriptTest(content, "Unauthenticated", "{}"); | |
23 | |
24 Cleanup(); | |
25 } | |
26 | |
27 } // namespace remoting | |
OLD | NEW |