diff options
Diffstat (limited to 'remoting/client/client_context.h')
-rw-r--r-- | remoting/client/client_context.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/remoting/client/client_context.h b/remoting/client/client_context.h index c28c62e..38c6088 100644 --- a/remoting/client/client_context.h +++ b/remoting/client/client_context.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 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. @@ -13,13 +13,12 @@ namespace remoting { // A class that manages threads and running context for the chromoting client -// process. This class is not designed to be subclassed. +// process. class ClientContext { public: ClientContext(); - ~ClientContext(); + virtual ~ClientContext(); - // Start and Stop must be called from the main plugin thread. void Start(); void Stop(); @@ -41,9 +40,6 @@ class ClientContext { // A thread that handles all decode operations. base::Thread decode_thread_; - // True if Start() was called on the context. - bool started_; - DISALLOW_COPY_AND_ASSIGN(ClientContext); }; |