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

Unified Diff: sandbox/win/tests/validation_tests/commands.h

Issue 1851213002: Remove sandbox on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix nacl compile issues Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sandbox/win/tests/unit_tests/unit_tests.cc ('k') | sandbox/win/tests/validation_tests/commands.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/win/tests/validation_tests/commands.h
diff --git a/sandbox/win/tests/validation_tests/commands.h b/sandbox/win/tests/validation_tests/commands.h
deleted file mode 100644
index f9b61990ed9e34b125fddec669da293504b73aaf..0000000000000000000000000000000000000000
--- a/sandbox/win/tests/validation_tests/commands.h
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright (c) 2012 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.
-
-#ifndef SANDBOX_TESTS_VALIDATION_TESTS_COMMANDS_H__
-#define SANDBOX_TESTS_VALIDATION_TESTS_COMMANDS_H__
-
-#include <windows.h>
-
-#include "base/strings/string16.h"
-
-namespace sandbox {
-
-// Checks if window is a real window. Returns a SboxTestResult.
-int TestValidWindow(HWND window);
-
-// Tries to open the process_id. Returns a SboxTestResult.
-int TestOpenProcess(DWORD process_id, DWORD access_mask);
-
-// Tries to open thread_id. Returns a SboxTestResult.
-int TestOpenThread(DWORD thread_id);
-
-// Tries to open path for read access. Returns a SboxTestResult.
-int TestOpenReadFile(const base::string16& path);
-
-// Tries to open path for write access. Returns a SboxTestResult.
-int TestOpenWriteFile(const base::string16& path);
-
-// Tries to open a registry key.
-int TestOpenKey(HKEY base_key, base::string16 subkey);
-
-// Tries to open the workstation's input desktop as long as the
-// current desktop is not the interactive one. Returns a SboxTestResult.
-int TestOpenInputDesktop();
-
-// Tries to switch the interactive desktop. Returns a SboxTestResult.
-int TestSwitchDesktop();
-
-// Tries to open the alternate desktop. Returns a SboxTestResult.
-int TestOpenAlternateDesktop(wchar_t *desktop_name);
-
-// Tries to enumerate desktops on the alternate windowstation.
-// Returns a SboxTestResult.
-int TestEnumAlternateWinsta();
-
-} // namespace sandbox
-
-#endif // SANDBOX_TESTS_VALIDATION_TESTS_COMMANDS_H__
« no previous file with comments | « sandbox/win/tests/unit_tests/unit_tests.cc ('k') | sandbox/win/tests/validation_tests/commands.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698