From a502bbe7a3ea0d4909e4e163ab00a1f3be483143 Mon Sep 17 00:00:00 2001 From: "erg@google.com" Date: Fri, 7 Jan 2011 18:06:45 +0000 Subject: Start sorting methods in class declarations. A lot of our headers are a mess and aren't organized. Impose the following order on files in the base/ directory: class Blah { each public/protected/private section: typedefs; enums; static constants; ctors; dtors; methods; overridden virtual methods; data members; }; BUG=68682 TEST=compiles Review URL: http://codereview.chromium.org/6081007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70749 0039d316-1c4b-4281-b951-d872f2087c98 --- base/threading/watchdog.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'base/threading/watchdog.h') diff --git a/base/threading/watchdog.h b/base/threading/watchdog.h index bf95639..4af45dc 100644 --- a/base/threading/watchdog.h +++ b/base/threading/watchdog.h @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -59,9 +59,9 @@ class Watchdog { } virtual void ThreadMain(); private: - Watchdog* watchdog_; - void SetThreadName() const; + + Watchdog* watchdog_; }; enum State {ARMED, DISARMED, SHUTDOWN }; -- cgit v1.1