Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Side by Side Diff: remoting/jingle_glue/jingle_thread.cc

Issue 2801003: Tighten up compile warnings based to match other chromium sub-projects.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « remoting/jingle_glue/jingle_client.cc ('k') | remoting/remoting.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "remoting/jingle_glue/jingle_thread.h" 5 #include "remoting/jingle_glue/jingle_thread.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/message_loop.h" 8 #include "base/message_loop.h"
9 #include "talk/base/ssladapter.h" 9 #include "talk/base/ssladapter.h"
10 10
(...skipping 10 matching lines...) Expand all
21 21
22 int64 TaskPump::CurrentTime() { 22 int64 TaskPump::CurrentTime() {
23 return static_cast<int64>(talk_base::Time()); 23 return static_cast<int64>(talk_base::Time());
24 } 24 }
25 25
26 void TaskPump::OnMessage(talk_base::Message* pmsg) { 26 void TaskPump::OnMessage(talk_base::Message* pmsg) {
27 RunTasks(); 27 RunTasks();
28 } 28 }
29 29
30 JingleThread::JingleThread() 30 JingleThread::JingleThread()
31 : message_loop_(NULL), 31 : task_pump_(NULL),
32 task_pump_(NULL), 32 started_event_(true, false),
33 started_event_(true, false) { } 33 message_loop_(NULL) { }
34 34
35 JingleThread::~JingleThread() { } 35 JingleThread::~JingleThread() { }
36 36
37 void JingleThread::Start() { 37 void JingleThread::Start() {
38 Thread::Start(); 38 Thread::Start();
39 started_event_.Wait(); 39 started_event_.Wait();
40 } 40 }
41 41
42 void JingleThread::Run() { 42 void JingleThread::Run() {
43 LOG(INFO) << "Started Jingle thread."; 43 LOG(INFO) << "Started Jingle thread.";
(...skipping 27 matching lines...) Expand all
71 71
72 // Schedule next execution 20ms from now. 72 // Schedule next execution 20ms from now.
73 PostDelayed(20, this, kRunTasksMessageId); 73 PostDelayed(20, this, kRunTasksMessageId);
74 } 74 }
75 75
76 void JingleThread::OnMessage(talk_base::Message* msg) { 76 void JingleThread::OnMessage(talk_base::Message* msg) {
77 PumpAuxiliaryLoops(); 77 PumpAuxiliaryLoops();
78 } 78 }
79 79
80 } // namespace remoting 80 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/jingle_glue/jingle_client.cc ('k') | remoting/remoting.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698