summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/browser/browsing_instance.cc2
-rw-r--r--chrome/browser/mach_broker_mac.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/browsing_instance.cc b/chrome/browser/browsing_instance.cc
index 22c6ab5..41a3abc 100644
--- a/chrome/browser/browsing_instance.cc
+++ b/chrome/browser/browsing_instance.cc
@@ -22,7 +22,7 @@ bool BrowsingInstance::ShouldUseProcessPerSite(const GURL& url) {
const CommandLine& command_line = *CommandLine::ForCurrentProcess();
if (command_line.HasSwitch(switches::kProcessPerSite))
return true;
-
+
if (url.SchemeIs(chrome::kExtensionScheme)) {
// Always consolidate extensions regardless of the command line, because
// they will break if split into multiple processes.
diff --git a/chrome/browser/mach_broker_mac.h b/chrome/browser/mach_broker_mac.h
index 1827fc9..25e49fd 100644
--- a/chrome/browser/mach_broker_mac.h
+++ b/chrome/browser/mach_broker_mac.h
@@ -62,11 +62,11 @@ class MachBroker : public base::ProcessMetrics::PortProvider,
private:
// Private constructor.
MachBroker();
-
+
// Used to register for notifications received by NotificationObserver.
// Accessed only on the UI thread.
NotificationRegistrar registrar_;
-
+
friend struct DefaultSingletonTraits<MachBroker>;
friend class MachBrokerTest;