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

Side by Side Diff: experimental/visual_studio_plugin/src/NaClVsx.Package/NaClGuids.cs

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 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 unified diff | Download patch
OLDNEW
(Empty)
1 /*
2 * Copyright 2009 The Native Client Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can
4 * be found in the LICENSE file.
5 */
6 using System;
7
8 namespace Google.NaClVsx {
9 static class NaClGuids {
10 public const string kGuidNaClVsxPackageCmdSetString =
11 "03b5cf30-7327-4a5c-a3c9-96e7dc092b96";
12
13 public const string kGuidNaClVsxPackagePkgString =
14 "e882b8b3-696d-4633-b119-99aaee515316";
15
16 public const string kGuidNaClVsxProjectFactoryString =
17 "16DE46F3-7ED9-4CD4-8543-9C2A6A5F11F0";
18
19 public static readonly Guid kGuidNaClVsxPackageCmdSet =
20 new Guid(kGuidNaClVsxPackageCmdSetString);
21
22 public static readonly Guid kGuidNaClVsxProjectFactory =
23 new Guid(kGuidNaClVsxProjectFactoryString);
24 } ;
25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698