summaryrefslogtreecommitdiffstats
path: root/dbus/mock_object_proxy.h
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/mock_object_proxy.h
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/mock_object_proxy.h')
-rw-r--r--dbus/mock_object_proxy.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbus/mock_object_proxy.h b/dbus/mock_object_proxy.h
index b5900ad..7c61b47 100644
--- a/dbus/mock_object_proxy.h
+++ b/dbus/mock_object_proxy.h
@@ -32,14 +32,14 @@ class MockObjectProxy : public ObjectProxy {
virtual scoped_ptr<Response> CallMethodAndBlockWithErrorDetails(
MethodCall* method_call,
int timeout_ms,
- ScopedDBusError* error) OVERRIDE {
+ ScopedDBusError* error) override {
return scoped_ptr<Response>(
MockCallMethodAndBlockWithErrorDetails(method_call, timeout_ms, error));
}
MOCK_METHOD2(MockCallMethodAndBlock, Response*(MethodCall* method_call,
int timeout_ms));
virtual scoped_ptr<Response> CallMethodAndBlock(MethodCall* method_call,
- int timeout_ms) OVERRIDE {
+ int timeout_ms) override {
return scoped_ptr<Response>(MockCallMethodAndBlock(method_call,
timeout_ms));
}