- add sources.
[platform/framework/web/crosswalk.git] / src / tools / win / ChromeDebug / ChromeDebug / Guids.cs
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Guids.cs
6 // MUST match guids.h
7 using System;
8
9 namespace ChromeDebug {
10   static class GuidList {
11     public const string guidChromeDebugPkgString = "7de8bbab-82c7-4871-b82c-4d5d44a3979d";
12     public const string guidChromeDebugCmdSetString = "6608d840-ce6c-45ab-b856-eb0a0b471ff1";
13
14     public static readonly Guid guidChromeDebugCmdSet = new Guid(guidChromeDebugCmdSetString);
15   };
16 }