OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 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 WebAppBannerPromptReply_h | |
6 #define WebAppBannerPromptReply_h | |
7 | |
8 namespace blink { | |
9 | |
10 enum class WebAppBannerPromptReply { | |
11 None = 0, | |
Mike West
2015/03/06 20:17:45
Nit: WebAppBannerPromptReplyNone and WebAppBannerP
mlamouri (slow - plz ping)
2015/03/06 20:42:04
With "enum class", AFAIK, you would have to do Web
| |
12 Cancel | |
13 }; | |
14 | |
15 } // namespace blink | |
16 | |
17 #endif // WebAppBannerPromptReply_h | |
OLD | NEW |