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

Side by Side Diff: cc/trees/channel_impl.h

Issue 1357373002: Add basic framework for splitting thread proxy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor clean-up. Created 5 years, 3 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
OLDNEW
(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 CC_TREES_CHANNEL_IMPL_H_
6 #define CC_TREES_CHANNEL_IMPL_H_
7
8 #include "cc/base/cc_export.h"
9
10 namespace cc {
11
12 // Channel used to send commands to and receive commands from ProxyMain.
13 // See channel_main.h
14 class CC_EXPORT ChannelImpl {
15 public:
16 // Interface for commands sent to ProxyMain
17 virtual void DidCompleteSwapBuffers() = 0;
18
19 protected:
20 virtual ~ChannelImpl() {}
21 };
22
23 } // namespace cc
24
25 #endif // CC_TREES_CHANNEL_IMPL_H_
OLDNEW
« no previous file with comments | « cc/cc.gyp ('k') | cc/trees/channel_main.h » ('j') | cc/trees/channel_main.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698