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

Side by Side Diff: sandbox/src/job_unittest.cc

Issue 46039: Removed unneeded includes of base/scoped_ptr.h. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 9 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 | « net/url_request/url_request_context.h ('k') | sandbox/src/named_pipe_policy.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 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 // This file contains unit tests for the job object. 5 // This file contains unit tests for the job object.
6 6
7 #include "base/scoped_ptr.h"
8 #include "sandbox/src/job.h" 7 #include "sandbox/src/job.h"
9 #include "testing/gtest/include/gtest/gtest.h" 8 #include "testing/gtest/include/gtest/gtest.h"
10 9
11 namespace sandbox { 10 namespace sandbox {
12 11
13 // Tests the creation and destruction of the job. 12 // Tests the creation and destruction of the job.
14 TEST(JobTest, TestCreation) { 13 TEST(JobTest, TestCreation) {
15 // Scope the creation of Job. 14 // Scope the creation of Job.
16 { 15 {
17 // Create the job. 16 // Create the job.
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 EXPECT_EQ(1, jbpidl.NumberOfAssignedProcesses); 179 EXPECT_EQ(1, jbpidl.NumberOfAssignedProcesses);
181 EXPECT_EQ(1, jbpidl.NumberOfProcessIdsInList); 180 EXPECT_EQ(1, jbpidl.NumberOfProcessIdsInList);
182 EXPECT_EQ(pi.dwProcessId, jbpidl.ProcessIdList[0]); 181 EXPECT_EQ(pi.dwProcessId, jbpidl.ProcessIdList[0]);
183 182
184 EXPECT_TRUE(::TerminateProcess(pi.hProcess, 0)); 183 EXPECT_TRUE(::TerminateProcess(pi.hProcess, 0));
185 184
186 EXPECT_TRUE(::CloseHandle(job_handle)); 185 EXPECT_TRUE(::CloseHandle(job_handle));
187 } 186 }
188 187
189 } // namespace sandbox 188 } // namespace sandbox
OLDNEW
« no previous file with comments | « net/url_request/url_request_context.h ('k') | sandbox/src/named_pipe_policy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698