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

Unified Diff: sandbox/win/tests/integration_tests/integration_tests_common.h

Issue 1835003003: [Windows Sandbox] MITIGATION_EXTENSION_POINT_DISABLE support for children. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Final fixes and nits. Created 4 years, 6 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/integration_tests/hooking_win_proc.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/win/tests/integration_tests/integration_tests_common.h
diff --git a/sandbox/win/tests/integration_tests/integration_tests_common.h b/sandbox/win/tests/integration_tests/integration_tests_common.h
new file mode 100644
index 0000000000000000000000000000000000000000..841e6e4b628d4164155be96bedcff3eb97e1f6b0
--- /dev/null
+++ b/sandbox/win/tests/integration_tests/integration_tests_common.h
@@ -0,0 +1,43 @@
+// Copyright 2016 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_INTEGRATION_TESTS_COMMON_H_
+#define SANDBOX_TESTS_INTEGRATION_TESTS_COMMON_H_
+
+#include <windows.h>
+
+// Use the same header file for DLL and importers.
+#ifdef _DLL_EXPORTING
+#define DECLSPEC extern "C" __declspec(dllexport)
+#else
+#define DECLSPEC extern "C" __declspec(dllimport)
+#endif
+
+//------------------------------------------------------------------------------
+// Tests
+//------------------------------------------------------------------------------
+const wchar_t* g_extension_point_test_mutex = L"ChromeExtensionTestMutex";
+
+//------------------------------------------------------------------------------
+// Hooking WinProc exe.
+//------------------------------------------------------------------------------
+const wchar_t* g_winproc_file = L"sbox_integration_test_win_proc.exe ";
+const wchar_t* g_winproc_class_name = L"myWindowClass";
+const wchar_t* g_winproc_window_name = L"ChromeMitigationTests";
+const wchar_t* g_winproc_event = L"ChromeExtensionTestEvent";
+
+//------------------------------------------------------------------------------
+// Hooking dll.
+//------------------------------------------------------------------------------
+const wchar_t* g_hook_dll_file = L"sbox_integration_test_hook_dll.dll";
+const wchar_t* g_hook_event = L"ChromeExtensionTestHookEvent";
+const char* g_hook_handler_func = "HookProc";
+const char* g_was_hook_called_func = "WasHookCalled";
+const char* g_set_hook_func = "SetHook";
+
+DECLSPEC LRESULT HookProc(int code, WPARAM wParam, LPARAM lParam);
+DECLSPEC bool WasHookCalled();
+DECLSPEC void SetHook(HHOOK hook_handle);
+
+#endif // SANDBOX_TESTS_INTEGRATION_TESTS_COMMON_H_
« no previous file with comments | « sandbox/win/tests/integration_tests/hooking_win_proc.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698