summaryrefslogtreecommitdiffstats
path: root/chrome/browser/hang_monitor
diff options
context:
space:
mode:
authorerg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-14 16:53:41 +0000
committererg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-14 16:53:41 +0000
commit038d52e1cd7f5ec3eda5c18b4c4437c372ec9c04 (patch)
treece06e8884aebf474fcb02170d3af0334567fa8f4 /chrome/browser/hang_monitor
parentd76d4ebac33dd9df8c3aa361b7902e0a934fde4d (diff)
downloadchromium_src-038d52e1cd7f5ec3eda5c18b4c4437c372ec9c04.zip
chromium_src-038d52e1cd7f5ec3eda5c18b4c4437c372ec9c04.tar.gz
chromium_src-038d52e1cd7f5ec3eda5c18b4c4437c372ec9c04.tar.bz2
More style nits.
(Working on cleaning chrome/ so hopefully we can lint it by default.) Review URL: http://codereview.chromium.org/274040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28971 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/hang_monitor')
-rw-r--r--chrome/browser/hang_monitor/hung_plugin_action.h6
-rw-r--r--chrome/browser/hang_monitor/hung_window_detector.h8
2 files changed, 7 insertions, 7 deletions
diff --git a/chrome/browser/hang_monitor/hung_plugin_action.h b/chrome/browser/hang_monitor/hung_plugin_action.h
index f497346..631bd34 100644
--- a/chrome/browser/hang_monitor/hung_plugin_action.h
+++ b/chrome/browser/hang_monitor/hung_plugin_action.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_HANG_MONITOR_HUNG_WINDOW_DETECTOR_H__
-#define CHROME_BROWSER_HANG_MONITOR_HUNG_WINDOW_DETECTOR_H__
+#ifndef CHROME_BROWSER_HANG_MONITOR_HUNG_PLUGIN_ACTION_H__
+#define CHROME_BROWSER_HANG_MONITOR_HUNG_PLUGIN_ACTION_H__
#include "chrome/browser/hang_monitor/hung_window_detector.h"
// This class provides an implementation the
@@ -42,4 +42,4 @@ class HungPluginAction : public HungWindowDetector::HungWindowNotification {
HWND current_hung_plugin_window_;
};
-#endif // CHROME_BROWSER_HANG_MONITOR_HUNG_WINDOW_DETECTOR_H__
+#endif // CHROME_BROWSER_HANG_MONITOR_HUNG_PLUGIN_ACTION_H__
diff --git a/chrome/browser/hang_monitor/hung_window_detector.h b/chrome/browser/hang_monitor/hung_window_detector.h
index b3ac56d..d4e2553 100644
--- a/chrome/browser/hang_monitor/hung_window_detector.h
+++ b/chrome/browser/hang_monitor/hung_window_detector.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_HUNG_WINDOW_DETECTOR_H__
-#define CHROME_BROWSER_HUNG_WINDOW_DETECTOR_H__
+#ifndef CHROME_BROWSER_HANG_MONITOR_HUNG_WINDOW_DETECTOR_H__
+#define CHROME_BROWSER_HANG_MONITOR_HUNG_WINDOW_DETECTOR_H__
#include "base/lock.h"
#include "chrome/common/worker_thread_ticker.h"
@@ -48,7 +48,7 @@ class HungWindowDetector : public WorkerThreadTicker::Callback {
// Ownership of this pointer is not transferred to this class.
// Note that the Initialize method needs to be called to initiate monitoring
// of hung windows.
- HungWindowDetector(HungWindowNotification* notification);
+ explicit HungWindowDetector(HungWindowNotification* notification);
~HungWindowDetector();
// This method initialized the monitoring of hung windows. All descendant
@@ -88,4 +88,4 @@ class HungWindowDetector : public WorkerThreadTicker::Callback {
};
-#endif // CHROME_BROWSER_HUNG_WINDOW_DETECTOR_H__
+#endif // CHROME_BROWSER_HANG_MONITOR_HUNG_WINDOW_DETECTOR_H__