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

Side by Side Diff: content/renderer/renderer_restrict_dispatch_group.h

Issue 9917002: IPC: change sync channel dispatch restriction to allow dispatch to other channels within the same "… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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 | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698