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

Unified Diff: extensions/browser/api/lock_screen_data/operation_result.h

Issue 2934293003: The chrome.lockScreen.data API implementation (Closed)
Patch Set: switch to BackendTaskRunner Created 3 years, 5 months 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
Index: extensions/browser/api/lock_screen_data/operation_result.h
diff --git a/extensions/browser/api/lock_screen_data/operation_result.h b/extensions/browser/api/lock_screen_data/operation_result.h
new file mode 100644
index 0000000000000000000000000000000000000000..ff53663f2dd4e519d14fbafdf8f3cee9e63aba37
--- /dev/null
+++ b/extensions/browser/api/lock_screen_data/operation_result.h
@@ -0,0 +1,26 @@
+// Copyright 2017 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 EXTENSIONS_BROWSER_API_LOCK_SCREEN_DATA_OPERATION_RESULT_H_
+#define EXTENSIONS_BROWSER_API_LOCK_SCREEN_DATA_OPERATION_RESULT_H_
+
+namespace extensions {
+namespace lock_screen_data {
+
+// Enum containing possible results of data item operations exposed by
+// ItemStorage and DataItem.
+enum class OperationResult {
+ kSuccess,
+ kFailed,
+ kNotFound,
+ kUnknownExtension,
+ kAlreadyRegistered,
+ kInvalidKey,
+ kWrongKey,
+};
+
+} // namespace lock_screen_data
+} // namespace extensions
+
+#endif // EXTENSIONS_BROWSER_API_LOCK_SCREEN_DATA_OPERATION_RESULT_H_

Powered by Google App Engine
This is Rietveld 408576698