summaryrefslogtreecommitdiffstats
path: root/dbus/bus.cc
diff options
context:
space:
mode:
authoranujk.sharma <anujk.sharma@samsung.com>2014-10-07 00:29:56 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-07 07:30:31 +0000
commit1a60a65835b7189dca67332134391f3a325e2047 (patch)
treeef841e42b16760ce37d5c9ebfd1437cb09fe5466 /dbus/bus.cc
parent263c31370ed81377b59ed58b9ae41ded18630c13 (diff)
downloadchromium_src-1a60a65835b7189dca67332134391f3a325e2047.zip
chromium_src-1a60a65835b7189dca67332134391f3a325e2047.tar.gz
chromium_src-1a60a65835b7189dca67332134391f3a325e2047.tar.bz2
Replacing the OVERRIDE with override and FINAL with final in /src/dbus
This step is a giant search and replace for OVERRIDE and FINAL to replace them with their lowercase versions. BUG=417463 Review URL: https://codereview.chromium.org/629883003 Cr-Commit-Position: refs/heads/master@{#298415}
Diffstat (limited to 'dbus/bus.cc')
-rw-r--r--dbus/bus.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbus/bus.cc b/dbus/bus.cc
index 3cad3c8..e9e77a5 100644
--- a/dbus/bus.cc
+++ b/dbus/bus.cc
@@ -84,13 +84,13 @@ class Watch : public base::MessagePumpLibevent::Watcher {
private:
// Implement MessagePumpLibevent::Watcher.
- virtual void OnFileCanReadWithoutBlocking(int file_descriptor) OVERRIDE {
+ virtual void OnFileCanReadWithoutBlocking(int file_descriptor) override {
const bool success = dbus_watch_handle(raw_watch_, DBUS_WATCH_READABLE);
CHECK(success) << "Unable to allocate memory";
}
// Implement MessagePumpLibevent::Watcher.
- virtual void OnFileCanWriteWithoutBlocking(int file_descriptor) OVERRIDE {
+ virtual void OnFileCanWriteWithoutBlocking(int file_descriptor) override {
const bool success = dbus_watch_handle(raw_watch_, DBUS_WATCH_WRITABLE);
CHECK(success) << "Unable to allocate memory";
}