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

Unified 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, 9 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 side-by-side diff with in-line comments
Download patch
Index: content/renderer/renderer_restrict_dispatch_group.h
diff --git a/content/renderer/renderer_restrict_dispatch_group.h b/content/renderer/renderer_restrict_dispatch_group.h
new file mode 100644
index 0000000000000000000000000000000000000000..1edad2363edfcceeedbeb62c5294235dcf243bc1
--- /dev/null
+++ b/content/renderer/renderer_restrict_dispatch_group.h
@@ -0,0 +1,18 @@
+// Copyright (c) 2012 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 CONTENT_RENDERER_RESTRICT_DISPATCH_GROUP_H_
+#define CONTENT_RENDERER_RESTRICT_DISPATCH_GROUP_H_
+#pragma once
+
+namespace content {
+
+enum RendererRestrictDispatchGroup {
brettw 2012/03/29 18:28:57 Can you add a comment here about what this is for?
+ kRendererRestrictDispatchGroup_None = 0,
+ kRendererRestrictDispatchGroup_Pepper,
+};
+
+} // namespace content
+
+#endif // CONTENT_RENDERER_RESTRICT_DISPATCH_GROUP_H_

Powered by Google App Engine
This is Rietveld 408576698