Index: content/public/common/permission_status.mojom |
diff --git a/content/public/common/permission_status.mojom b/content/public/common/permission_status.mojom |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f7e56bfab19cdbc096cb41eadab2dd099d3b097b |
--- /dev/null |
+++ b/content/public/common/permission_status.mojom |
@@ -0,0 +1,11 @@ |
+// Copyright 2014 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. |
+ |
+module content; |
+ |
+enum PermissionStatus { |
+ GRANTED, |
+ DENIED, |
+ ASK |
xhwang
2015/01/21 06:52:24
What does "ASK" exactly mean here? If a permission
|
+}; |