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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 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 EXTENSIONS_BROWSER_API_LOCK_SCREEN_DATA_OPERATION_RESULT_H_
6 #define EXTENSIONS_BROWSER_API_LOCK_SCREEN_DATA_OPERATION_RESULT_H_
7
8 namespace extensions {
9 namespace lock_screen_data {
10
11 // Enum containing possible results of data item operations exposed by
12 // ItemStorage and DataItem.
13 enum class OperationResult {
14 kSuccess,
15 kFailed,
16 kNotFound,
17 kUnknownExtension,
18 kAlreadyRegistered,
19 kInvalidKey,
20 kWrongKey,
21 };
22
23 } // namespace lock_screen_data
24 } // namespace extensions
25
26 #endif // EXTENSIONS_BROWSER_API_LOCK_SCREEN_DATA_OPERATION_RESULT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698