OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012 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 CONTENT_RENDERER_RESTRICT_DISPATCH_GROUP_H_ | |
6 #define CONTENT_RENDERER_RESTRICT_DISPATCH_GROUP_H_ | |
7 #pragma once | |
8 | |
9 namespace content { | |
10 | |
11 enum RendererRestrictDispatchGroup { | |
brettw
2012/03/29 18:28:57
Can you add a comment here about what this is for?
| |
12 kRendererRestrictDispatchGroup_None = 0, | |
13 kRendererRestrictDispatchGroup_Pepper, | |
14 }; | |
15 | |
16 } // namespace content | |
17 | |
18 #endif // CONTENT_RENDERER_RESTRICT_DISPATCH_GROUP_H_ | |
OLD | NEW |