summaryrefslogtreecommitdiffstats
path: root/android_webview/browser/aw_result_codes.h
diff options
context:
space:
mode:
authorboliu@chromium.org <boliu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-25 23:32:28 +0000
committerboliu@chromium.org <boliu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-25 23:32:28 +0000
commitf81fa201abdfe50c3c69787f510ae866e7534beb (patch)
tree53f0c6243189405fb974b84d634a25839ee0241b /android_webview/browser/aw_result_codes.h
parentde610a73cc0d514afd779398259ee55ef5ea95b6 (diff)
downloadchromium_src-f81fa201abdfe50c3c69787f510ae866e7534beb.zip
chromium_src-f81fa201abdfe50c3c69787f510ae866e7534beb.tar.gz
chromium_src-f81fa201abdfe50c3c69787f510ae866e7534beb.tar.bz2
Implement AwContentBrowserClient and AwBrowserContext
Some other classes that are added in this patch: AwBrowserMainParts, AwQuotaPermissionClient, AwUrlRequestContext[Getter], AwResourceContext. There is enough implementation for these classes so that existing instrumentation tests still pass. A lot of TODOs are added for future work beyond this patch. BUG= Review URL: https://chromiumcodereview.appspot.com/11184051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@164213 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview/browser/aw_result_codes.h')
-rw-r--r--android_webview/browser/aw_result_codes.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/android_webview/browser/aw_result_codes.h b/android_webview/browser/aw_result_codes.h
new file mode 100644
index 0000000..5bbbe9a
--- /dev/null
+++ b/android_webview/browser/aw_result_codes.h
@@ -0,0 +1,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_