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

Side by Side Diff: trunk/src/chromeos/ime/ibus_daemon_controller.h

Issue 14985007: Revert 198844 "Move sequenced_task_runner to base/task" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 7 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CHROMEOS_IME_IBUS_DAEMON_CONTROLLER_H_ 5 #ifndef CHROMEOS_IME_IBUS_DAEMON_CONTROLLER_H_
6 #define CHROMEOS_IME_IBUS_DAEMON_CONTROLLER_H_ 6 #define CHROMEOS_IME_IBUS_DAEMON_CONTROLLER_H_
7 7
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/task/sequenced_task_runner.h" 9 #include "base/sequenced_task_runner.h"
10 #include "chromeos/chromeos_export.h" 10 #include "chromeos/chromeos_export.h"
11 11
12 namespace chromeos { 12 namespace chromeos {
13 13
14 // IBusDaemonController is used to start/stop ibus-daemon process. This class is 14 // IBusDaemonController is used to start/stop ibus-daemon process. This class is
15 // also watching ibus-daemon process and if it is crashed, re-launch it 15 // also watching ibus-daemon process and if it is crashed, re-launch it
16 // automatically. This class is managed as Singleton. 16 // automatically. This class is managed as Singleton.
17 class CHROMEOS_EXPORT IBusDaemonController { 17 class CHROMEOS_EXPORT IBusDaemonController {
18 public: 18 public:
19 class Observer { 19 class Observer {
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 protected: 59 protected:
60 // IBusDaemonController is managed as singleton. Use GetInstance instead. 60 // IBusDaemonController is managed as singleton. Use GetInstance instead.
61 IBusDaemonController(); 61 IBusDaemonController();
62 62
63 DISALLOW_COPY_AND_ASSIGN(IBusDaemonController); 63 DISALLOW_COPY_AND_ASSIGN(IBusDaemonController);
64 }; 64 };
65 65
66 } // namespace chromeos 66 } // namespace chromeos
67 67
68 #endif // CHROMEOS_IME_IBUS_DAEMON_CONTROLLER_H_ 68 #endif // CHROMEOS_IME_IBUS_DAEMON_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698