diff options
author | scherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-27 00:00:44 +0000 |
---|---|---|
committer | scherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-27 00:00:44 +0000 |
commit | aa46ba58bd3935d7eaa952b7d37252b4057513e6 (patch) | |
tree | bf566756babde4533ced025df33149c7a15d14b5 /remoting/jingle_glue | |
parent | 083237baa51586b9db720facb2c07914e22bb753 (diff) | |
download | chromium_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/jingle_glue')
-rw-r--r-- | remoting/jingle_glue/fake_signal_strategy.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/jingle_glue/fake_signal_strategy.cc b/remoting/jingle_glue/fake_signal_strategy.cc index c489098..cdf54f9 100644 --- a/remoting/jingle_glue/fake_signal_strategy.cc +++ b/remoting/jingle_glue/fake_signal_strategy.cc @@ -27,7 +27,7 @@ FakeSignalStrategy::FakeSignalStrategy(const std::string& jid) : jid_(jid), peer_(NULL), last_id_(0), - ALLOW_THIS_IN_INITIALIZER_LIST(weak_factory_(this)) { + weak_factory_(this) { } |