From 0e142bf597010b1528dc5ff5d9bc39b797524cf3 Mon Sep 17 00:00:00 2001 From: "tfarina@chromium.org" Date: Sat, 1 Sep 2012 13:27:53 +0000 Subject: net: Fix more clang warnings about missing virtual and OVERRIDE annotations. BUG=115047 TBR=willchan@chromium.org Review URL: https://chromiumcodereview.appspot.com/10908051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@154615 0039d316-1c4b-4281-b951-d872f2087c98 --- net/test/local_test_server_posix.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'net/test') diff --git a/net/test/local_test_server_posix.cc b/net/test/local_test_server_posix.cc index 3e47a0f..7afd422 100644 --- a/net/test/local_test_server_posix.cc +++ b/net/test/local_test_server_posix.cc @@ -31,7 +31,7 @@ class OrphanedTestServerFilter : public base::ProcessFilter { : path_string_(path_string), port_string_(port_string) {} - virtual bool Includes(const base::ProcessEntry& entry) const { + virtual bool Includes(const base::ProcessEntry& entry) const OVERRIDE { if (entry.parent_pid() != 1) return false; bool found_path_string = false; -- cgit v1.1