Index: tools/win/ChromeDebug/ChromeDebug/Guids.cs |
diff --git a/tools/win/ChromeDebug/ChromeDebug/Guids.cs b/tools/win/ChromeDebug/ChromeDebug/Guids.cs |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c6da4bf0204e79a584fa1189883e4f8d772f6576 |
--- /dev/null |
+++ b/tools/win/ChromeDebug/ChromeDebug/Guids.cs |
@@ -0,0 +1,16 @@ |
+// Copyright (c) 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. |
+ |
+// Guids.cs |
+// MUST match guids.h |
+using System; |
+ |
+namespace ChromeDebug { |
+ static class GuidList { |
+ public const string guidChromeDebugPkgString = "7de8bbab-82c7-4871-b82c-4d5d44a3979d"; |
+ public const string guidChromeDebugCmdSetString = "6608d840-ce6c-45ab-b856-eb0a0b471ff1"; |
+ |
+ public static readonly Guid guidChromeDebugCmdSet = new Guid(guidChromeDebugCmdSetString); |
+ }; |
+} |