summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormostynb <mostynb@opera.com>2014-10-14 12:23:16 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-14 19:24:14 +0000
commitb6e8e6c86aa003c5bf04ad26a937733c2e9f8591 (patch)
tree8ad7b90e6ced091ffc09bd2cba309dc93436b57f
parent3476e041d261f60243948f306c979b3fc791e6d2 (diff)
downloadchromium_src-b6e8e6c86aa003c5bf04ad26a937733c2e9f8591.zip
chromium_src-b6e8e6c86aa003c5bf04ad26a937733c2e9f8591.tar.gz
chromium_src-b6e8e6c86aa003c5bf04ad26a937733c2e9f8591.tar.bz2
remove the FINAL macro
All uses of the FINAL macro have been removed now, let's remove the macro itself. BUG=417463 Review URL: https://codereview.chromium.org/655543003 Cr-Commit-Position: refs/heads/master@{#299523}
-rw-r--r--base/compiler_specific.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/base/compiler_specific.h b/base/compiler_specific.h
index a93d350..ba57cc3 100644
--- a/base/compiler_specific.h
+++ b/base/compiler_specific.h
@@ -139,13 +139,6 @@
// virtual void foo() OVERRIDE;
#define OVERRIDE override
-// Annotate a virtual method indicating that subclasses must not override it,
-// or annotate a class to indicate that it cannot be subclassed.
-// Use like:
-// virtual void foo() FINAL;
-// class B FINAL : public A {};
-#define FINAL final
-
// Annotate a function indicating the caller must examine the return value.
// Use like:
// int foo() WARN_UNUSED_RESULT;