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

Unified Diff: chrome/browser/nacl_host/nacl_process_host_unittest.cc

Issue 75463005: Move more files from chrome/browser/nacl_host/ to components/nacl/browser/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/nacl_host/nacl_process_host_unittest.cc
diff --git a/chrome/browser/nacl_host/nacl_process_host_unittest.cc b/chrome/browser/nacl_host/nacl_process_host_unittest.cc
deleted file mode 100644
index aaff3222c97beefa5ac1ba55e4327119daba2c12..0000000000000000000000000000000000000000
--- a/chrome/browser/nacl_host/nacl_process_host_unittest.cc
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/nacl_host/nacl_process_host.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-#if defined(OS_WIN)
-TEST(NaClProcessHostTest, AddressSpaceAllocation) {
- size_t size = 1 << 20; // 1 MB
- void* addr = nacl::AllocateAddressSpaceASLR(GetCurrentProcess(), size);
- bool success = VirtualFree(addr, 0, MEM_RELEASE);
- ASSERT_TRUE(success);
-}
-#endif

Powered by Google App Engine
This is Rietveld 408576698