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

Side by Side Diff: components/nacl/loader/nacl_ipc_adapter_unittest.cc

Issue 16881004: Move chrome/nacl to components/nacl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Create a zygote folder Created 7 years, 5 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
« no previous file with comments | « components/nacl/loader/nacl_ipc_adapter.cc ('k') | components/nacl/loader/nacl_listener.h » ('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) 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/nacl/nacl_ipc_adapter.h" 5 #include "components/nacl/loader/nacl_ipc_adapter.h"
6 6
7 #include <string.h> 7 #include <string.h>
8 8
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/message_loop.h" 10 #include "base/message_loop.h"
11 #include "base/message_loop/message_loop_proxy.h" 11 #include "base/message_loop/message_loop_proxy.h"
12 #include "base/threading/platform_thread.h" 12 #include "base/threading/platform_thread.h"
13 #include "base/threading/simple_thread.h" 13 #include "base/threading/simple_thread.h"
14 #include "ipc/ipc_test_sink.h" 14 #include "ipc/ipc_test_sink.h"
15 #include "native_client/src/trusted/desc/nacl_desc_custom.h" 15 #include "native_client/src/trusted/desc/nacl_desc_custom.h"
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 // back NACL_ABI_O_READONLY 335 // back NACL_ABI_O_READONLY
336 EXPECT_EQ(NACL_ABI_O_RDONLY, 336 EXPECT_EQ(NACL_ABI_O_RDONLY,
337 TranslatePepperFileReadWriteOpenFlagsForTesting(PP_FILEOPENFLAG_CREATE)); 337 TranslatePepperFileReadWriteOpenFlagsForTesting(PP_FILEOPENFLAG_CREATE));
338 EXPECT_EQ(NACL_ABI_O_RDONLY, 338 EXPECT_EQ(NACL_ABI_O_RDONLY,
339 TranslatePepperFileReadWriteOpenFlagsForTesting( 339 TranslatePepperFileReadWriteOpenFlagsForTesting(
340 PP_FILEOPENFLAG_TRUNCATE)); 340 PP_FILEOPENFLAG_TRUNCATE));
341 EXPECT_EQ(NACL_ABI_O_RDONLY, 341 EXPECT_EQ(NACL_ABI_O_RDONLY,
342 TranslatePepperFileReadWriteOpenFlagsForTesting( 342 TranslatePepperFileReadWriteOpenFlagsForTesting(
343 PP_FILEOPENFLAG_EXCLUSIVE)); 343 PP_FILEOPENFLAG_EXCLUSIVE));
344 } 344 }
OLDNEW
« no previous file with comments | « components/nacl/loader/nacl_ipc_adapter.cc ('k') | components/nacl/loader/nacl_listener.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698