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

Unified Diff: chrome/test/conflicts/conflicts_dll.cc

Issue 2473783005: [Win] Create ModuleWatcher. (Closed)
Patch Set: Add conflits_dll for testing. Created 4 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
« no previous file with comments | « chrome/test/conflicts/OWNERS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/conflicts/conflicts_dll.cc
diff --git a/chrome/test/conflicts/conflicts_dll.cc b/chrome/test/conflicts/conflicts_dll.cc
new file mode 100644
index 0000000000000000000000000000000000000000..23141248afc8dbc0f71a3cacb281d28ac4efc8c3
--- /dev/null
+++ b/chrome/test/conflicts/conflicts_dll.cc
@@ -0,0 +1,11 @@
+// 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.
+
+// An empty DLL for use when testing the chrome://conflicts implementation.
+
+#include <windows.h>
+
+BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved) {
+ return TRUE;
+}
« no previous file with comments | « chrome/test/conflicts/OWNERS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698