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

Side by Side Diff: chromecast/browser/test/chromecast_browser_test.cc

Issue 638803002: Reorganizes Chromecast code to better reflect functional dependencies. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: extra DEPS: chromecast/crash/android --> chromecast/common Created 6 years, 2 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 #include "chromecast/shell/browser/test/chromecast_browser_test.h" 5 #include "chromecast/browser/test/chromecast_browser_test.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/message_loop/message_loop.h" 9 #include "base/message_loop/message_loop.h"
10 #include "chromecast/shell/browser/cast_browser_context.h" 10 #include "chromecast/browser/cast_browser_context.h"
11 #include "chromecast/shell/browser/cast_browser_process.h" 11 #include "chromecast/browser/cast_browser_process.h"
12 #include "content/public/browser/browser_thread.h" 12 #include "content/public/browser/browser_thread.h"
13 #include "content/public/browser/render_process_host.h" 13 #include "content/public/browser/render_process_host.h"
14 #include "content/public/browser/web_contents.h" 14 #include "content/public/browser/web_contents.h"
15 #include "content/public/test/browser_test_utils.h" 15 #include "content/public/test/browser_test_utils.h"
16 #include "content/public/test/test_navigation_observer.h" 16 #include "content/public/test/test_navigation_observer.h"
17 17
18 namespace chromecast { 18 namespace chromecast {
19 namespace shell { 19 namespace shell {
20 20
21 ChromecastBrowserTest::ChromecastBrowserTest() 21 ChromecastBrowserTest::ChromecastBrowserTest()
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 CastBrowserProcess::GetInstance()->browser_context(), 70 CastBrowserProcess::GetInstance()->browser_context(),
71 NULL); 71 NULL);
72 create_params.routing_id = MSG_ROUTING_NONE; 72 create_params.routing_id = MSG_ROUTING_NONE;
73 create_params.initial_size = gfx::Size(1280, 720); 73 create_params.initial_size = gfx::Size(1280, 720);
74 web_contents_.reset(content::WebContents::Create(create_params)); 74 web_contents_.reset(content::WebContents::Create(create_params));
75 return web_contents_.get(); 75 return web_contents_.get();
76 } 76 }
77 77
78 } // namespace shell 78 } // namespace shell
79 } // namespace chromecast 79 } // namespace chromecast
OLDNEW
« no previous file with comments | « chromecast/browser/test/chromecast_browser_test.h ('k') | chromecast/browser/test/chromecast_browser_test_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698