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

Side by Side Diff: content/browser/site_instance_unittest.cc

Issue 7616019: Reorganize chrome/test, part #9 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "base/compiler_specific.h" 5 #include "base/compiler_specific.h"
6 #include "base/stl_util.h" 6 #include "base/stl_util.h"
7 #include "base/string16.h" 7 #include "base/string16.h"
8 #include "chrome/test/base/testing_browser_process_test.h"
8 #include "chrome/test/base/testing_profile.h" 9 #include "chrome/test/base/testing_profile.h"
9 #include "chrome/test/testing_browser_process_test.h"
10 #include "content/browser/browser_thread.h" 10 #include "content/browser/browser_thread.h"
11 #include "content/browser/browsing_instance.h" 11 #include "content/browser/browsing_instance.h"
12 #include "content/browser/child_process_security_policy.h" 12 #include "content/browser/child_process_security_policy.h"
13 #include "content/browser/mock_content_browser_client.h" 13 #include "content/browser/mock_content_browser_client.h"
14 #include "content/browser/renderer_host/browser_render_process_host.h" 14 #include "content/browser/renderer_host/browser_render_process_host.h"
15 #include "content/browser/renderer_host/render_view_host.h" 15 #include "content/browser/renderer_host/render_view_host.h"
16 #include "content/browser/renderer_host/test_render_view_host.h" 16 #include "content/browser/renderer_host/test_render_view_host.h"
17 #include "content/browser/site_instance.h" 17 #include "content/browser/site_instance.h"
18 #include "content/browser/tab_contents/navigation_entry.h" 18 #include "content/browser/tab_contents/navigation_entry.h"
19 #include "content/browser/tab_contents/tab_contents.h" 19 #include "content/browser/tab_contents/tab_contents.h"
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 // Make sure none of differing privilege processes are mixed. 514 // Make sure none of differing privilege processes are mixed.
515 EXPECT_NE(extension1_instance->GetProcess(), webui1_instance->GetProcess()); 515 EXPECT_NE(extension1_instance->GetProcess(), webui1_instance->GetProcess());
516 516
517 for (size_t i = 0; i < content::kMaxRendererProcessCount; ++i) { 517 for (size_t i = 0; i < content::kMaxRendererProcessCount; ++i) {
518 EXPECT_NE(extension1_instance->GetProcess(), hosts[i]); 518 EXPECT_NE(extension1_instance->GetProcess(), hosts[i]);
519 EXPECT_NE(webui1_instance->GetProcess(), hosts[i]); 519 EXPECT_NE(webui1_instance->GetProcess(), hosts[i]);
520 } 520 }
521 521
522 STLDeleteContainerPointers(hosts.begin(), hosts.end()); 522 STLDeleteContainerPointers(hosts.begin(), hosts.end());
523 } 523 }
OLDNEW
« no previous file with comments | « content/browser/renderer_host/test_render_view_host.h ('k') | content/browser/tab_contents/navigation_entry_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698