summaryrefslogtreecommitdiffstats
path: root/remoting/host/daemon_process.cc
diff options
context:
space:
mode:
authorscherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-27 00:00:44 +0000
committerscherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-27 00:00:44 +0000
commitaa46ba58bd3935d7eaa952b7d37252b4057513e6 (patch)
treebf566756babde4533ced025df33149c7a15d14b5 /remoting/host/daemon_process.cc
parent083237baa51586b9db720facb2c07914e22bb753 (diff)
downloadchromium_src-aa46ba58bd3935d7eaa952b7d37252b4057513e6.zip
chromium_src-aa46ba58bd3935d7eaa952b7d37252b4057513e6.tar.gz
chromium_src-aa46ba58bd3935d7eaa952b7d37252b4057513e6.tar.bz2
remoting: Remove use of ALLOW_THIS_IN_INITIALIZER_LIST.
It's no longer providing value as the MSVC warning is disabled during compilation. Refer to bug for details. BUG=234765 Review URL: https://chromiumcodereview.appspot.com/14522010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@196888 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/daemon_process.cc')
-rw-r--r--remoting/host/daemon_process.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/host/daemon_process.cc b/remoting/host/daemon_process.cc
index 50c1b45..faf5e60 100644
--- a/remoting/host/daemon_process.cc
+++ b/remoting/host/daemon_process.cc
@@ -167,7 +167,7 @@ DaemonProcess::DaemonProcess(
caller_task_runner_(caller_task_runner),
io_task_runner_(io_task_runner),
next_terminal_id_(0),
- ALLOW_THIS_IN_INITIALIZER_LIST(weak_factory_(this)) {
+ weak_factory_(this) {
DCHECK(caller_task_runner->BelongsToCurrentThread());
}