Home | History | Annotate | Download | only in streams
      1 // Copyright 2015 The Chromium OS 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 #include <brillo/streams/stream_errors.h>
      6 
      7 namespace brillo {
      8 namespace errors {
      9 namespace stream {
     10 
     11 const char kDomain[] = "stream.io";
     12 
     13 const char kStreamClosed[] = "stream_closed";
     14 const char kOperationNotSupported[] = "operation_not_supported";
     15 const char kPartialData[] = "partial_data";
     16 const char kInvalidParameter[] = "invalid_parameter";
     17 const char kTimeout[] = "time_out";
     18 
     19 }  // namespace stream
     20 }  // namespace errors
     21 }  // namespace brillo
     22