| Index: remoting/protocol/capture_scheduler.cc
|
| diff --git a/remoting/host/capture_scheduler.cc b/remoting/protocol/capture_scheduler.cc
|
| similarity index 97%
|
| rename from remoting/host/capture_scheduler.cc
|
| rename to remoting/protocol/capture_scheduler.cc
|
| index 556c20763c6e54534cb27dabdc4ab173970b8c7d..1e8f73a1bac74e348edff2375d52fe02b934ec6f 100644
|
| --- a/remoting/host/capture_scheduler.cc
|
| +++ b/remoting/protocol/capture_scheduler.cc
|
| @@ -1,8 +1,8 @@
|
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// Copyright 2015 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.
|
|
|
| -#include "remoting/host/capture_scheduler.h"
|
| +#include "remoting/protocol/capture_scheduler.h"
|
|
|
| #include <algorithm>
|
|
|
| @@ -39,6 +39,7 @@ static const int kMaxUnacknowledgedFrames = 4;
|
| } // namespace
|
|
|
| namespace remoting {
|
| +namespace protocol {
|
|
|
| // We assume that the number of available cores is constant.
|
| CaptureScheduler::CaptureScheduler(const base::Closure& capture_closure)
|
| @@ -178,4 +179,5 @@ void CaptureScheduler::CaptureNextFrame() {
|
| capture_closure_.Run();
|
| }
|
|
|
| +} // namespace protocol
|
| } // namespace remoting
|
|
|