Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(595)

Unified Diff: blimp/helium/result.cc

Issue 2602103002: Delete blimp/helium and remove references to it from dependent targets (Closed)
Patch Set: . Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « blimp/helium/result.h ('k') | blimp/helium/result_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « blimp/helium/result.h ('k') | blimp/helium/result_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698