• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2012 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 #ifndef CONTENT_PUBLIC_COMMON_RESULT_CODES_H_
6 #define CONTENT_PUBLIC_COMMON_RESULT_CODES_H_
7 
8 namespace content {
9 
10 enum ResultCode {
11 
12 #define RESULT_CODE(label, value) RESULT_CODE_ ## label = value,
13 #include "content/public/common/result_codes_list.h"
14 #undef RESULT_CODE
15 
16   // Last return code (keep this last).
17   RESULT_CODE_LAST_CODE
18 };
19 
20 }  // namespace content
21 
22 #endif  // CONTENT_PUBLIC_COMMON_RESULT_CODES_H_
23