summaryrefslogtreecommitdiffstats
path: root/remoting/base
diff options
context:
space:
mode:
authoralexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-05 19:58:36 +0000
committeralexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-05 19:58:36 +0000
commitdf338b7db4dfebd184886fec55db969305c94f07 (patch)
tree8e0184e81556899615ffac2120efe0ea563a1cce /remoting/base
parente2206627c1f4f26425b7ba51a21e8d021956bea1 (diff)
downloadchromium_src-df338b7db4dfebd184886fec55db969305c94f07.zip
chromium_src-df338b7db4dfebd184886fec55db969305c94f07.tar.gz
chromium_src-df338b7db4dfebd184886fec55db969305c94f07.tar.bz2
[Chromoting] The daemon process now starts the networking process and passes the host configuration (and updates) over the IPC channel.
This CL also switches to FilePathWatcher (to detect the configuration file changes) on all platforms. BUG=123696,134694 Review URL: https://chromiumcodereview.appspot.com/10855249 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@154999 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/base')
-rw-r--r--remoting/base/stoppable.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/base/stoppable.h b/remoting/base/stoppable.h
index 4d58a59..dddfcdae 100644
--- a/remoting/base/stoppable.h
+++ b/remoting/base/stoppable.h
@@ -21,8 +21,8 @@ class Stoppable {
public:
// Constructs an object and stores the callback to be posted to |task_runner|
// once the object has been shutdown completely.
- explicit Stoppable(scoped_refptr<base::SingleThreadTaskRunner> task_runner,
- const base::Closure& stopped_callback);
+ Stoppable(scoped_refptr<base::SingleThreadTaskRunner> task_runner,
+ const base::Closure& stopped_callback);
virtual ~Stoppable();
// Initiates shutdown. It can be called by both the owner of the object and