From 9ac1a539ee78e7ad6ef49cc9cb086d564af59043 Mon Sep 17 00:00:00 2001 From: Adam Roben Date: Sun, 17 Nov 2013 18:20:17 -0500 Subject: [PATCH] Fix all remaining readability/namespace errors --- brightray/browser/devtools_ui.h | 2 +- brightray/browser/download_manager_delegate.h | 2 +- brightray/browser/inspectable_web_contents.h | 2 +- brightray/browser/inspectable_web_contents_impl.h | 2 +- brightray/browser/inspectable_web_contents_view.h | 2 +- brightray/browser/inspectable_web_contents_view_mac.h | 2 +- brightray/browser/linux/inspectable_web_contents_view_linux.cc | 2 +- brightray/browser/linux/inspectable_web_contents_view_linux.h | 2 +- brightray/browser/network_delegate.h | 2 +- brightray/browser/notification_presenter.h | 2 +- brightray/browser/notification_presenter_mac.h | 2 +- brightray/browser/url_request_context_getter.h | 2 +- brightray/browser/web_ui_controller_factory.h | 2 +- brightray/browser/win/devtools_window.cc | 2 +- brightray/browser/win/devtools_window.h | 2 +- brightray/browser/win/inspectable_web_contents_view_win.cc | 2 +- brightray/browser/win/inspectable_web_contents_view_win.h | 2 +- brightray/common/application_info_win.cc | 2 +- brightray/common/content_client.cc | 2 +- brightray/common/content_client.h | 2 +- brightray/common/main_delegate.cc | 2 +- brightray/common/main_delegate.h | 2 +- 22 files changed, 22 insertions(+), 22 deletions(-) diff --git a/brightray/browser/devtools_ui.h b/brightray/browser/devtools_ui.h index 70ab0f2686da..1f5ff4f72171 100644 --- a/brightray/browser/devtools_ui.h +++ b/brightray/browser/devtools_ui.h @@ -20,6 +20,6 @@ class DevToolsUI : public content::WebUIController { DISALLOW_COPY_AND_ASSIGN(DevToolsUI); }; -} +} // namespace brightray #endif diff --git a/brightray/browser/download_manager_delegate.h b/brightray/browser/download_manager_delegate.h index c25d2e7a16a2..95ac7d5a817d 100644 --- a/brightray/browser/download_manager_delegate.h +++ b/brightray/browser/download_manager_delegate.h @@ -14,6 +14,6 @@ class DownloadManagerDelegate : public content::DownloadManagerDelegate { DISALLOW_COPY_AND_ASSIGN(DownloadManagerDelegate); }; -} +} // namespace brightray #endif diff --git a/brightray/browser/inspectable_web_contents.h b/brightray/browser/inspectable_web_contents.h index 0a585146866f..d539a53b9a07 100644 --- a/brightray/browser/inspectable_web_contents.h +++ b/brightray/browser/inspectable_web_contents.h @@ -22,6 +22,6 @@ public: virtual void ShowDevTools() = 0; }; -} +} // namespace brightray #endif diff --git a/brightray/browser/inspectable_web_contents_impl.h b/brightray/browser/inspectable_web_contents_impl.h index f81ccc0185a6..3fd83d1651f9 100644 --- a/brightray/browser/inspectable_web_contents_impl.h +++ b/brightray/browser/inspectable_web_contents_impl.h @@ -90,6 +90,6 @@ private: DISALLOW_COPY_AND_ASSIGN(InspectableWebContentsImpl); }; -} +} // namespace brightray #endif diff --git a/brightray/browser/inspectable_web_contents_view.h b/brightray/browser/inspectable_web_contents_view.h index 3964cc682c09..ac731ac9b0d9 100644 --- a/brightray/browser/inspectable_web_contents_view.h +++ b/brightray/browser/inspectable_web_contents_view.h @@ -16,6 +16,6 @@ public: virtual bool SetDockSide(const std::string& side) = 0; }; -} +} // namespace brightray #endif diff --git a/brightray/browser/inspectable_web_contents_view_mac.h b/brightray/browser/inspectable_web_contents_view_mac.h index 1b5a6e433225..3ac76b3bee27 100644 --- a/brightray/browser/inspectable_web_contents_view_mac.h +++ b/brightray/browser/inspectable_web_contents_view_mac.h @@ -31,6 +31,6 @@ private: DISALLOW_COPY_AND_ASSIGN(InspectableWebContentsViewMac); }; -} +} // namespace brightray #endif diff --git a/brightray/browser/linux/inspectable_web_contents_view_linux.cc b/brightray/browser/linux/inspectable_web_contents_view_linux.cc index eb792aa69d8e..f48c77bba7e8 100644 --- a/brightray/browser/linux/inspectable_web_contents_view_linux.cc +++ b/brightray/browser/linux/inspectable_web_contents_view_linux.cc @@ -234,4 +234,4 @@ GtkWidget *InspectableWebContentsViewLinux::GetBrowserWindow() { return browser; } -} +} // namespace brightray diff --git a/brightray/browser/linux/inspectable_web_contents_view_linux.h b/brightray/browser/linux/inspectable_web_contents_view_linux.h index f82de0a54cd1..94dfa97a1ad9 100644 --- a/brightray/browser/linux/inspectable_web_contents_view_linux.h +++ b/brightray/browser/linux/inspectable_web_contents_view_linux.h @@ -49,6 +49,6 @@ private: DISALLOW_COPY_AND_ASSIGN(InspectableWebContentsViewLinux); }; -} +} // namespace brightray #endif diff --git a/brightray/browser/network_delegate.h b/brightray/browser/network_delegate.h index aff8e2288563..91c2379dad53 100644 --- a/brightray/browser/network_delegate.h +++ b/brightray/browser/network_delegate.h @@ -37,6 +37,6 @@ class NetworkDelegate : public net::NetworkDelegate { DISALLOW_COPY_AND_ASSIGN(NetworkDelegate); }; -} +} // namespace brightray #endif diff --git a/brightray/browser/notification_presenter.h b/brightray/browser/notification_presenter.h index a106edab208d..3f238b2b867b 100644 --- a/brightray/browser/notification_presenter.h +++ b/brightray/browser/notification_presenter.h @@ -23,6 +23,6 @@ class NotificationPresenter { int notification_id) = 0; }; -} +} // namespace brightray #endif diff --git a/brightray/browser/notification_presenter_mac.h b/brightray/browser/notification_presenter_mac.h index b3757bf56ea4..b2a9e59fca44 100644 --- a/brightray/browser/notification_presenter_mac.h +++ b/brightray/browser/notification_presenter_mac.h @@ -34,6 +34,6 @@ class NotificationPresenterMac : public NotificationPresenter { base::scoped_nsobject delegate_; }; -} +} // namespace brightray #endif diff --git a/brightray/browser/url_request_context_getter.h b/brightray/browser/url_request_context_getter.h index 7d4efb6c00d4..fa7f0952cdba 100644 --- a/brightray/browser/url_request_context_getter.h +++ b/brightray/browser/url_request_context_getter.h @@ -53,6 +53,6 @@ private: DISALLOW_COPY_AND_ASSIGN(URLRequestContextGetter); }; -} +} // namespace brightray #endif diff --git a/brightray/browser/web_ui_controller_factory.h b/brightray/browser/web_ui_controller_factory.h index 1ee3f9b2dfd0..4a451389538c 100644 --- a/brightray/browser/web_ui_controller_factory.h +++ b/brightray/browser/web_ui_controller_factory.h @@ -37,6 +37,6 @@ class WebUIControllerFactory : public content::WebUIControllerFactory { DISALLOW_COPY_AND_ASSIGN(WebUIControllerFactory); }; -} +} // namespace brightray #endif diff --git a/brightray/browser/win/devtools_window.cc b/brightray/browser/win/devtools_window.cc index 8bed3e89f7d9..442bffa13cc1 100644 --- a/brightray/browser/win/devtools_window.cc +++ b/brightray/browser/win/devtools_window.cc @@ -44,4 +44,4 @@ LRESULT DevToolsWindow::OnSize(UINT, WPARAM, LPARAM, BOOL&) { return 0; } -} +} // namespace brightray diff --git a/brightray/browser/win/devtools_window.h b/brightray/browser/win/devtools_window.h index 7181ab8e4d34..40f2d5afdb22 100644 --- a/brightray/browser/win/devtools_window.h +++ b/brightray/browser/win/devtools_window.h @@ -31,6 +31,6 @@ class DevToolsWindow : public ui::WindowImpl, public base::SupportsWeakPtrproduct_version()); } -} +} // namespace brightray diff --git a/brightray/common/content_client.cc b/brightray/common/content_client.cc index a518cc026ca9..4f45ba7cd4b5 100644 --- a/brightray/common/content_client.cc +++ b/brightray/common/content_client.cc @@ -37,4 +37,4 @@ gfx::Image& ContentClient::GetNativeImageNamed(int resource_id) const { return ui::ResourceBundle::GetSharedInstance().GetNativeImageNamed(resource_id); } -} +} // namespace brightray diff --git a/brightray/common/content_client.h b/brightray/common/content_client.h index 8a93771018e7..e8bc579d7b4a 100644 --- a/brightray/common/content_client.h +++ b/brightray/common/content_client.h @@ -24,6 +24,6 @@ private: DISALLOW_COPY_AND_ASSIGN(ContentClient); }; -} +} // namespace brightray #endif diff --git a/brightray/common/main_delegate.cc b/brightray/common/main_delegate.cc index b58b2e9d72f5..cfa4cd675998 100644 --- a/brightray/common/main_delegate.cc +++ b/brightray/common/main_delegate.cc @@ -57,4 +57,4 @@ void MainDelegate::InitializeResourceBundle() { ui::ResourceBundle::GetSharedInstance().AddDataPackFromPath(*it, ui::SCALE_FACTOR_NONE); } -} +} // namespace brightray diff --git a/brightray/common/main_delegate.h b/brightray/common/main_delegate.h index ba99f5155f04..d9e9e17c2e40 100644 --- a/brightray/common/main_delegate.h +++ b/brightray/common/main_delegate.h @@ -47,5 +47,5 @@ private: DISALLOW_COPY_AND_ASSIGN(MainDelegate); }; -} +} // namespace brightray #endif