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

Side by Side Diff: content/browser/renderer_host/test_render_view_host.cc

Issue 8336007: Move content_client.h into content/public. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add back a needed include. Created 9 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 | Annotate | Revision Log
« no previous file with comments | « content/browser/renderer_host/render_process_host.cc ('k') | content/browser/site_instance.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be 3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file. 4 // found in the LICENSE file.
5 5
6 #include "content/browser/browser_url_handler.h" 6 #include "content/browser/browser_url_handler.h"
7 #include "content/browser/renderer_host/test_backing_store.h" 7 #include "content/browser/renderer_host/test_backing_store.h"
8 #include "content/browser/renderer_host/test_render_view_host.h" 8 #include "content/browser/renderer_host/test_render_view_host.h"
9 #include "content/browser/site_instance.h" 9 #include "content/browser/site_instance.h"
10 #include "content/browser/tab_contents/navigation_controller.h" 10 #include "content/browser/tab_contents/navigation_controller.h"
11 #include "content/browser/tab_contents/test_tab_contents.h" 11 #include "content/browser/tab_contents/test_tab_contents.h"
12 #include "content/common/content_client.h"
13 #include "content/common/dom_storage_common.h" 12 #include "content/common/dom_storage_common.h"
14 #include "content/common/view_messages.h" 13 #include "content/common/view_messages.h"
14 #include "content/public/common/content_client.h"
15 #include "content/test/test_browser_context.h" 15 #include "content/test/test_browser_context.h"
16 #include "ui/gfx/rect.h" 16 #include "ui/gfx/rect.h"
17 #include "webkit/glue/webkit_glue.h" 17 #include "webkit/glue/webkit_glue.h"
18 #include "webkit/glue/webpreferences.h" 18 #include "webkit/glue/webpreferences.h"
19 #include "webkit/glue/password_form.h" 19 #include "webkit/glue/password_form.h"
20 20
21 using webkit_glue::PasswordForm; 21 using webkit_glue::PasswordForm;
22 22
23 void InitNavigateParams(ViewHostMsg_FrameNavigate_Params* params, 23 void InitNavigateParams(ViewHostMsg_FrameNavigate_Params* params,
24 int page_id, 24 int page_id,
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 SetContents(NULL); 363 SetContents(NULL);
364 364
365 // Make sure that we flush any messages related to TabContents destruction 365 // Make sure that we flush any messages related to TabContents destruction
366 // before we destroy the browser context. 366 // before we destroy the browser context.
367 MessageLoop::current()->RunAllPending(); 367 MessageLoop::current()->RunAllPending();
368 368
369 // Release the browser context on the UI thread. 369 // Release the browser context on the UI thread.
370 message_loop_.DeleteSoon(FROM_HERE, browser_context_.release()); 370 message_loop_.DeleteSoon(FROM_HERE, browser_context_.release());
371 message_loop_.RunAllPending(); 371 message_loop_.RunAllPending();
372 } 372 }
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_process_host.cc ('k') | content/browser/site_instance.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698