summaryrefslogtreecommitdiffstats
path: root/android_webview/browser/aw_result_codes.h
blob: 5bbbe9af6bb7306cde42aac8f9c81396b4961053 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (c) 2012 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 ANDROID_WEBVIEW_BROWSER_AW_RESULT_CODES_H_
#define ANDROID_WEBVIEW_BROWSER_AW_RESULT_CODES_H_

#include "content/public/common/result_codes.h"

namespace android_webview {

enum ResultCode {
  RESULT_CODE_START = content::RESULT_CODE_LAST_CODE,

  // A critical resource file is missing.
  RESULT_CODE_MISSING_DATA,
};

}  // namespace android_webview

#endif  // ANDROID_WEBVIEW_BROWSER_AW_RESULT_CODES_H_