| Index: blimp/helium/result.cc
|
| diff --git a/blimp/helium/result.cc b/blimp/helium/result.cc
|
| deleted file mode 100644
|
| index 5a84fb151ab663917d3a4b1c229045da88946679..0000000000000000000000000000000000000000
|
| --- a/blimp/helium/result.cc
|
| +++ /dev/null
|
| @@ -1,30 +0,0 @@
|
| -// Copyright 2016 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#include "blimp/helium/result.h"
|
| -
|
| -#include "base/logging.h"
|
| -
|
| -namespace blimp {
|
| -namespace helium {
|
| -
|
| -const char* ResultToString(Result result) {
|
| - switch (result) {
|
| - case Result::SUCCESS:
|
| - return "SUCCESS";
|
| - break;
|
| -#define HELIUM_ERROR(label, value) \
|
| - case Result::ERR_##label: \
|
| - return "ERR_" #label;
|
| - break;
|
| -#include "blimp/helium/errors.h"
|
| -#undef HELIUM_ERROR
|
| - }
|
| -
|
| - NOTREACHED();
|
| - return "";
|
| -}
|
| -
|
| -} // namespace helium
|
| -} // namespace blimp
|
|
|