• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2011 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 #include "net/base/file_stream_metrics.h"
6 
7 namespace net {
8 
GetFileErrorUmaBucket(int error)9 int GetFileErrorUmaBucket(int error) {
10   return 1;
11 }
12 
MaxFileErrorUmaBucket()13 int MaxFileErrorUmaBucket() {
14   return 2;
15 }
16 
MaxFileErrorUmaValue()17 int MaxFileErrorUmaValue() {
18   return 160;
19 }
20 
21 }  // namespace net
22