summaryrefslogtreecommitdiffstats
path: root/content/browser/mach_broker_mac.h
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-30 03:22:20 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-30 03:22:20 +0000
commit464883218eccabb97b52f7bcc6a459709b69f87e (patch)
tree20e62a5781a44d6827019d61d075e264e87b0469 /content/browser/mach_broker_mac.h
parent3df72a134583efcc1e86c6abac2103c9800c5c13 (diff)
downloadchromium_src-464883218eccabb97b52f7bcc6a459709b69f87e.zip
chromium_src-464883218eccabb97b52f7bcc6a459709b69f87e.tar.gz
chromium_src-464883218eccabb97b52f7bcc6a459709b69f87e.tar.bz2
Move remaining files in content\browser to the content namespace.
Review URL: https://codereview.chromium.org/11340029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@164828 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/mach_broker_mac.h')
-rw-r--r--content/browser/mach_broker_mac.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/content/browser/mach_broker_mac.h b/content/browser/mach_broker_mac.h
index 088edd0..de83d44 100644
--- a/content/browser/mach_broker_mac.h
+++ b/content/browser/mach_broker_mac.h
@@ -17,6 +17,8 @@
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
+namespace content {
+
// On OS X, the mach_port_t of a process is required to collect metrics about
// the process. Running |task_for_pid()| is only allowed for privileged code.
// However, a process has port rights to all its subprocesses, so let the
@@ -32,7 +34,7 @@
// Since this data arrives over a separate channel, it is not available
// immediately after a child process has been started.
class CONTENT_EXPORT MachBroker : public base::ProcessMetrics::PortProvider,
- public content::NotificationObserver {
+ public NotificationObserver {
public:
// Returns the global MachBroker.
static MachBroker* GetInstance();
@@ -80,10 +82,10 @@ class CONTENT_EXPORT MachBroker : public base::ProcessMetrics::PortProvider,
// Implement |ProcessMetrics::PortProvider|.
virtual mach_port_t TaskForPid(base::ProcessHandle process) const OVERRIDE;
- // Implement |content::NotificationObserver|.
+ // Implement |NotificationObserver|.
virtual void Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const NotificationSource& source,
+ const NotificationDetails& details) OVERRIDE;
private:
friend class MachBrokerTest;
friend struct DefaultSingletonTraits<MachBroker>;
@@ -99,7 +101,7 @@ class CONTENT_EXPORT MachBroker : public base::ProcessMetrics::PortProvider,
// Used to register for notifications received by NotificationObserver.
// Accessed only on the UI thread.
- content::NotificationRegistrar registrar_;
+ NotificationRegistrar registrar_;
// Stores mach info for every process in the broker.
typedef std::map<base::ProcessHandle, MachInfo> MachMap;
@@ -111,4 +113,6 @@ class CONTENT_EXPORT MachBroker : public base::ProcessMetrics::PortProvider,
DISALLOW_COPY_AND_ASSIGN(MachBroker);
};
+} // namespace content
+
#endif // CONTENT_BROWSER_MACH_BROKER_MAC_H_