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

Unified Diff: blimp/helium/result.h

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/owned_register_unittest.cc ('k') | blimp/helium/result.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/helium/result.h
diff --git a/blimp/helium/result.h b/blimp/helium/result.h
deleted file mode 100644
index bbc2f1e5cf5961ff390b92fb308dff1ebc58ee78..0000000000000000000000000000000000000000
--- a/blimp/helium/result.h
+++ /dev/null
@@ -1,32 +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.
-
-#ifndef BLIMP_HELIUM_RESULT_H_
-#define BLIMP_HELIUM_RESULT_H_
-
-#include "blimp/helium/blimp_helium_export.h"
-
-namespace blimp {
-namespace helium {
-
-// Defines the canonical list of Helium result codes.
-// Result::OK is the only non-error code.
-// All other codes are considered errors and are prefixed by ERR_.
-// See error_list.h for the unprefixed list of error codes.
-//
-// (Approach is inspired by net/base/net_errors.h)
-enum Result {
- SUCCESS,
-#define HELIUM_ERROR(label, value) ERR_##label = value,
-#include "blimp/helium/errors.h"
-#undef HELIUM_ERROR
-};
-
-// Gets a human-readable string representation of |result|.
-BLIMP_HELIUM_EXPORT const char* ResultToString(Result result);
-
-} // namespace helium
-} // namespace blimp
-
-#endif // BLIMP_HELIUM_RESULT_H_
« no previous file with comments | « blimp/helium/owned_register_unittest.cc ('k') | blimp/helium/result.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698