org.chromium.debug.core/src/org/chromium/debug/core/ChromiumDebugPlugin.java
changeset 355 8726e95bcbba
parent 52 f577ea64429e
--- a/org.chromium.debug.core/src/org/chromium/debug/core/ChromiumDebugPlugin.java	Mon Jun 07 16:33:07 2010 -0700
+++ b/org.chromium.debug.core/src/org/chromium/debug/core/ChromiumDebugPlugin.java	Mon Jun 07 16:51:19 2010 -0700
@@ -6,6 +6,7 @@
 
 import java.text.MessageFormat;
 
+import org.chromium.debug.core.model.BreakpointMap;
 import org.chromium.debug.core.model.ChromiumBreakpointWBAFactory;
 import org.chromium.debug.core.model.ChromiumLineBreakpoint;
 import org.eclipse.core.runtime.CoreException;
@@ -30,6 +31,8 @@
   /** The shared instance. */
   private static ChromiumDebugPlugin plugin;
 
+  private final BreakpointMap breakpointMap = new BreakpointMap();
+
   private ChromiumBreakpointWBAFactory breakpointWorkbenchAdapterFactory;
 
   public ChromiumDebugPlugin() {
@@ -52,6 +55,10 @@
     super.stop(context);
   }
 
+  public BreakpointMap getBreakpointMap() {
+    return breakpointMap;
+  }
+
   /**
    * @return the shared instance
    */