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

Side by Side Diff: chrome/test/base/browser_with_test_window_test.cc

Issue 10483003: Move the rest of the content\test headers that are used by embedders to content\public\test. This w… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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 "chrome/test/base/browser_with_test_window_test.h" 5 #include "chrome/test/base/browser_with_test_window_test.h"
6 6
7 #include "base/synchronization/waitable_event.h" 7 #include "base/synchronization/waitable_event.h"
8 #include "chrome/browser/profiles/profile_destroyer.h" 8 #include "chrome/browser/profiles/profile_destroyer.h"
9 #include "chrome/browser/ui/browser_navigator.h" 9 #include "chrome/browser/ui/browser_navigator.h"
10 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" 10 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
11 #include "chrome/browser/ui/tabs/tab_strip_model.h" 11 #include "chrome/browser/ui/tabs/tab_strip_model.h"
12 #include "chrome/common/render_messages.h" 12 #include "chrome/common/render_messages.h"
13 #include "chrome/test/base/testing_profile.h" 13 #include "chrome/test/base/testing_profile.h"
14 #include "content/public/browser/navigation_controller.h" 14 #include "content/public/browser/navigation_controller.h"
15 #include "content/public/browser/navigation_entry.h" 15 #include "content/public/browser/navigation_entry.h"
16 #include "content/public/browser/web_contents.h" 16 #include "content/public/browser/web_contents.h"
17 #include "content/public/common/page_transition_types.h" 17 #include "content/public/common/page_transition_types.h"
18 #include "content/test/test_renderer_host.h" 18 #include "content/public/test/test_renderer_host.h"
19 19
20 #if defined(USE_AURA) 20 #if defined(USE_AURA)
21 #include "ui/aura/test/aura_test_helper.h" 21 #include "ui/aura/test/aura_test_helper.h"
22 #endif 22 #endif
23 23
24 using content::BrowserThread; 24 using content::BrowserThread;
25 using content::NavigationController; 25 using content::NavigationController;
26 using content::RenderViewHost; 26 using content::RenderViewHost;
27 using content::RenderViewHostTester; 27 using content::RenderViewHostTester;
28 using content::WebContents; 28 using content::WebContents;
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 // Make sure we close all tabs, otherwise Browser isn't happy in its 148 // Make sure we close all tabs, otherwise Browser isn't happy in its
149 // destructor. 149 // destructor.
150 browser()->CloseAllTabs(); 150 browser()->CloseAllTabs();
151 browser_.reset(NULL); 151 browser_.reset(NULL);
152 window_.reset(NULL); 152 window_.reset(NULL);
153 } 153 }
154 154
155 TestingProfile* BrowserWithTestWindowTest::CreateProfile() { 155 TestingProfile* BrowserWithTestWindowTest::CreateProfile() {
156 return new TestingProfile(); 156 return new TestingProfile();
157 } 157 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698