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

Unified Diff: experimental/visual_studio_plugin/src/SymbolDBViewer/LocListLoader.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 side-by-side diff with in-line comments
Download patch
Index: experimental/visual_studio_plugin/src/SymbolDBViewer/LocListLoader.cs
diff --git a/experimental/visual_studio_plugin/src/SymbolDBViewer/LocListLoader.cs b/experimental/visual_studio_plugin/src/SymbolDBViewer/LocListLoader.cs
deleted file mode 100644
index df810901d2ba9ea01368104773cbd0946602016b..0000000000000000000000000000000000000000
--- a/experimental/visual_studio_plugin/src/SymbolDBViewer/LocListLoader.cs
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright (c) 2011 The Native Client Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#region
-
-using System.Collections.Generic;
-using System.Windows.Forms;
-using Google.NaClVsx.DebugSupport.DWARF;
-
-#endregion
-
-namespace SymbolDBViewer {
- /// <summary>
- /// Specializes the DictionaryLoader for loading the Location Lists.
- /// </summary>
- public class LocListLoader
- : DictionaryLoader<List<SymbolDatabase.LocListEntry>> {
- protected override TreeNode GetTreeNode(ulong key,
- List<SymbolDatabase.LocListEntry>
- locList) {
- var locListNode = new TreeNode();
- var keyString = GetString(key);
- locListNode.Name = keyString;
- locListNode.Text = @"LocList: " + keyString;
-
- foreach (var loc in locList) {
- var locString = string.Format(
- "Rule: Start Address: {0} End Address: {1} Data: {2}",
- loc.StartAddress,
- loc.EndAddress,
- loc.Data);
- locListNode.Nodes.Add(locString, locString);
- }
- return locListNode;
- }
- }
-}

Powered by Google App Engine
This is Rietveld 408576698