Index: third_party/WebKit/public/web/WebInstalledAppVerificationManager.h |
diff --git a/third_party/WebKit/public/web/WebInstalledAppVerificationManager.h b/third_party/WebKit/public/web/WebInstalledAppVerificationManager.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b155e6b20ce55ddca96d9b74d715cc3631ef5da5 |
--- /dev/null |
+++ b/third_party/WebKit/public/web/WebInstalledAppVerificationManager.h |
@@ -0,0 +1,35 @@ |
+// Copyright 2015 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 WebInstalledAppVerificationManager_h |
+#define WebInstalledAppVerificationManager_h |
+ |
+#include "public/platform/WebVector.h" |
+#include "public/platform/WebString.h" |
+#include "../platform/WebCommon.h" |
+ |
+namespace blink { |
+ |
+class Dictionary; |
+ |
+class WebInstalledAppVerificationManager { |
+public: |
+ WebInstalledAppVerificationManager() {} |
+ ~WebInstalledAppVerificationManager() {} |
+ |
+ BLINK_EXPORT WebString androidPackageName() const { return androidPackage; }; |
+ BLINK_EXPORT WebVector<WebString> androidSigningKeys() const { return keys; }; |
+ |
+#if BLINK_IMPLEMENTATION |
+ WebInstalledAppVerificationManager(const Dictionary& dict); |
+#endif |
+ |
+private: |
+ WebString androidPackage; |
+ WebVector<WebString> keys; |
+}; |
+ |
+} // namespace blink |
+ |
+#endif // WebInstalledAppVerificationManager_h |