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

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

Issue 240163005: Deliver IPC messages together with SwapCompositorFrame (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 2014 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_MESSAGE_DELIVERY_POLICY_H_
6 #define CONTENT_RENDERER_MESSAGE_DELIVERY_POLICY_H_
7
8 namespace content {
9
10 enum MessageDeliveryPolicy {
11 // If a commit was requested before the message was enqueued the message
12 // will be delivered with the swap corresponding to that commit. Otherwise
13 // the message will be sent immediately.
14 MESSAGE_DELIVERY_POLICY_WITH_VISUAL_STATE,
15 // The message will be delivered with the swap corresponding to the next
16 // commit.
17 MESSAGE_DELIVERY_POLICY_WITH_NEXT_COMMIT,
18 // The message will be delivered with the next swap.
19 MESSAGE_DELIVERY_POLICY_WITH_NEXT_SWAP,
20 };
21
22 } // namespace content
23
24 #endif // CONTENT_RENDERER_MESSAGE_DELIVERY_POLICY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698