diff options
author | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-07-16 11:45:35 +0200 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-07-17 08:59:23 +0000 |
commit | 552906b0f222c5d5dd11b9fd73829d510980461a (patch) | |
tree | 3a11e6ed0538a81dd83b20cf3a4783e297f26d91 /chromium/dbus/bus.h | |
parent | 1b05827804eaf047779b597718c03e7d38344261 (diff) | |
download | qtwebengine-chromium-552906b0f222c5d5dd11b9fd73829d510980461a.tar.gz |
BASELINE: Update Chromium to 83.0.4103.122
Change-Id: Ie3a82f5bb0076eec2a7c6a6162326b4301ee291e
Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io>
Diffstat (limited to 'chromium/dbus/bus.h')
-rw-r--r-- | chromium/dbus/bus.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/chromium/dbus/bus.h b/chromium/dbus/bus.h index 9c53491fc89..445cd05159d 100644 --- a/chromium/dbus/bus.h +++ b/chromium/dbus/bus.h @@ -24,7 +24,6 @@ namespace base { class SequencedTaskRunner; -class TaskRunner; } namespace dbus { @@ -38,7 +37,7 @@ class ObjectProxy; // // For asynchronous operations such as an asynchronous method call, the // bus object will use a task runner to monitor the underlying file -// descriptor used for D-Bus communication. By default, the bus will use +// descriptor used for D-Bus communication. By default, the bus will usegi // the current thread's task runner. If |dbus_task_runner| option is // specified, the bus will use that task runner instead. // @@ -547,10 +546,10 @@ class CHROME_DBUS_EXPORT Bus : public base::RefCountedThreadSafe<Bus> { virtual void UnregisterObjectPath(const ObjectPath& object_path); // Returns the task runner of the D-Bus thread. - virtual base::TaskRunner* GetDBusTaskRunner(); + virtual base::SequencedTaskRunner* GetDBusTaskRunner(); // Returns the task runner of the thread that created the bus. - virtual base::TaskRunner* GetOriginTaskRunner(); + virtual base::SequencedTaskRunner* GetOriginTaskRunner(); // Returns true if the bus has the D-Bus thread. virtual bool HasDBusThread(); |