• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2016 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "net/filter/source_stream.h"
6 
7 namespace net {
8 
SourceStream(SourceType type)9 SourceStream::SourceStream(SourceType type) : type_(type) {}
10 
11 SourceStream::~SourceStream() = default;
12 
Description() const13 std::string SourceStream::Description() const {
14   return "";
15 }
16 
17 }  // namespace net
18