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

Side by Side Diff: chrome/browser/chromeos/input_method/mock_sequenced_task_runner.cc

Issue 11594008: Revert 173477 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "chrome/browser/chromeos/input_method/mock_sequenced_task_runner.h"
6
7 #include "base/logging.h"
8
9 MockSequencedTaskRunner::MockSequencedTaskRunner() {
10 }
11
12 MockSequencedTaskRunner::~MockSequencedTaskRunner() {
13 }
14
15 bool MockSequencedTaskRunner::PostDelayedTask(
16 const tracked_objects::Location& from_here,
17 const base::Closure& task,
18 base::TimeDelta delay) {
19 NOTREACHED();
20 return false;
21 }
22
23 bool MockSequencedTaskRunner::RunsTasksOnCurrentThread() const {
24 return true;
25 }
26
27 bool MockSequencedTaskRunner::PostNonNestableDelayedTask(
28 const tracked_objects::Location& from_here,
29 const base::Closure& task,
30 base::TimeDelta delay) {
31 NOTREACHED();
32 return false;
33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698