Browse Source

Fix all remaining readability/namespace errors

Adam Roben 11 years ago
parent
commit
9ac1a539ee

+ 1 - 1
brightray/browser/devtools_ui.h

@@ -20,6 +20,6 @@ class DevToolsUI : public content::WebUIController {
   DISALLOW_COPY_AND_ASSIGN(DevToolsUI);
 };
 
-}
+}  // namespace brightray
 
 #endif

+ 1 - 1
brightray/browser/download_manager_delegate.h

@@ -14,6 +14,6 @@ class DownloadManagerDelegate : public content::DownloadManagerDelegate {
   DISALLOW_COPY_AND_ASSIGN(DownloadManagerDelegate);
 };
 
-}
+}  // namespace brightray
 
 #endif

+ 1 - 1
brightray/browser/inspectable_web_contents.h

@@ -22,6 +22,6 @@ public:
   virtual void ShowDevTools() = 0;
 };
 
-}
+}  // namespace brightray
 
 #endif

+ 1 - 1
brightray/browser/inspectable_web_contents_impl.h

@@ -90,6 +90,6 @@ private:
   DISALLOW_COPY_AND_ASSIGN(InspectableWebContentsImpl);
 };
 
-}
+}  // namespace brightray
 
 #endif

+ 1 - 1
brightray/browser/inspectable_web_contents_view.h

@@ -16,6 +16,6 @@ public:
   virtual bool SetDockSide(const std::string& side) = 0;
 };
 
-}
+}  // namespace brightray
 
 #endif

+ 1 - 1
brightray/browser/inspectable_web_contents_view_mac.h

@@ -31,6 +31,6 @@ private:
   DISALLOW_COPY_AND_ASSIGN(InspectableWebContentsViewMac);
 };
 
-}
+}  // namespace brightray
 
 #endif

+ 1 - 1
brightray/browser/linux/inspectable_web_contents_view_linux.cc

@@ -234,4 +234,4 @@ GtkWidget *InspectableWebContentsViewLinux::GetBrowserWindow() {
   return browser;
 }
 
-}
+}  // namespace brightray

+ 1 - 1
brightray/browser/linux/inspectable_web_contents_view_linux.h

@@ -49,6 +49,6 @@ private:
   DISALLOW_COPY_AND_ASSIGN(InspectableWebContentsViewLinux);
 };
 
-}
+}  // namespace brightray
 
 #endif

+ 1 - 1
brightray/browser/network_delegate.h

@@ -37,6 +37,6 @@ class NetworkDelegate : public net::NetworkDelegate {
   DISALLOW_COPY_AND_ASSIGN(NetworkDelegate);
 };
 
-}
+}  // namespace brightray
 
 #endif

+ 1 - 1
brightray/browser/notification_presenter.h

@@ -23,6 +23,6 @@ class NotificationPresenter {
       int notification_id) = 0;
 };
 
-}
+}  // namespace brightray
 
 #endif

+ 1 - 1
brightray/browser/notification_presenter_mac.h

@@ -34,6 +34,6 @@ class NotificationPresenterMac : public NotificationPresenter {
   base::scoped_nsobject<BRYUserNotificationCenterDelegate> delegate_;
 };
 
-}
+}  // namespace brightray
 
 #endif

+ 1 - 1
brightray/browser/url_request_context_getter.h

@@ -53,6 +53,6 @@ private:
   DISALLOW_COPY_AND_ASSIGN(URLRequestContextGetter);
 };
 
-}
+}  // namespace brightray
 
 #endif

+ 1 - 1
brightray/browser/web_ui_controller_factory.h

@@ -37,6 +37,6 @@ class WebUIControllerFactory : public content::WebUIControllerFactory {
   DISALLOW_COPY_AND_ASSIGN(WebUIControllerFactory);
 };
 
-}
+}  // namespace brightray
 
 #endif

+ 1 - 1
brightray/browser/win/devtools_window.cc

@@ -44,4 +44,4 @@ LRESULT DevToolsWindow::OnSize(UINT, WPARAM, LPARAM, BOOL&) {
   return 0;
 }
 
-}
+}  // namespace brightray

+ 1 - 1
brightray/browser/win/devtools_window.h

@@ -31,6 +31,6 @@ class DevToolsWindow : public ui::WindowImpl, public base::SupportsWeakPtr<DevTo
   DISALLOW_COPY_AND_ASSIGN(DevToolsWindow);
 };
 
-}
+}  // namespace brightray
 
 #endif

+ 1 - 1
brightray/browser/win/inspectable_web_contents_view_win.cc

@@ -56,4 +56,4 @@ bool InspectableWebContentsViewWin::SetDockSide(const std::string& side) {
   return false;
 }
 
-}
+}  // namespace brightray

+ 1 - 1
brightray/browser/win/inspectable_web_contents_view_win.h

@@ -32,6 +32,6 @@ private:
   DISALLOW_COPY_AND_ASSIGN(InspectableWebContentsViewWin);
 };
 
-}
+}  // namespace brightray
 
 #endif

+ 1 - 1
brightray/common/application_info_win.cc

@@ -16,4 +16,4 @@ std::string GetApplicationVersion() {
   return UTF16ToUTF8(info->product_version());
 }
 
-}
+}  // namespace brightray

+ 1 - 1
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

+ 1 - 1
brightray/common/content_client.h

@@ -24,6 +24,6 @@ private:
   DISALLOW_COPY_AND_ASSIGN(ContentClient);
 };
 
-}
+}  // namespace brightray
 
 #endif

+ 1 - 1
brightray/common/main_delegate.cc

@@ -57,4 +57,4 @@ void MainDelegate::InitializeResourceBundle() {
     ui::ResourceBundle::GetSharedInstance().AddDataPackFromPath(*it, ui::SCALE_FACTOR_NONE);
 }
 
-}
+}  // namespace brightray

+ 1 - 1
brightray/common/main_delegate.h

@@ -47,5 +47,5 @@ private:
   DISALLOW_COPY_AND_ASSIGN(MainDelegate);
 };
 
-}
+}  // namespace brightray
 #endif