org.chromium.debug.core/src/org/chromium/debug/core/model/NamedConnectionLoggerFactory.java
changeset 2 e4420d2515f1
equal deleted inserted replaced
1:ef76fc2ac88c 2:e4420d2515f1
       
     1 // Copyright (c) 2009 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 package org.chromium.debug.core.model;
       
     6 
       
     7 import org.chromium.sdk.ConnectionLogger;
       
     8 
       
     9 /**
       
    10  * The factory provides {@link ConnectionLogger} that can be used to output connection
       
    11  * traffic, supposedly to some UI.
       
    12  */
       
    13 public interface NamedConnectionLoggerFactory {
       
    14   ConnectionLogger createLogger(String title);
       
    15 }