From 65dd011fa379d4c92248ed92f0d341444e40d0d7 Mon Sep 17 00:00:00 2001 From: Adam Roben Date: Wed, 13 Mar 2013 15:42:16 -0400 Subject: [PATCH] Use Google-style header guards everywhere --- brightray/browser/browser_client.h | 6 +++--- brightray/browser/browser_context.h | 6 +++--- brightray/browser/browser_main_parts.h | 6 +++--- brightray/browser/network_delegate.h | 6 +++--- brightray/browser/url_request_context_getter.h | 6 +++--- brightray/common/main_delegate.h | 6 +++--- 6 files changed, 18 insertions(+), 18 deletions(-) diff --git a/brightray/browser/browser_client.h b/brightray/browser/browser_client.h index ac5412233f..9d7c1aebb9 100644 --- a/brightray/browser/browser_client.h +++ b/brightray/browser/browser_client.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE-CHROMIUM file. -#ifndef __brightray__browser_client__ -#define __brightray__browser_client__ +#ifndef BRIGHTRAY_BROWSER_BROWSER_CLIENT_H_ +#define BRIGHTRAY_BROWSER_BROWSER_CLIENT_H_ #include "content/public/browser/content_browser_client.h" @@ -36,4 +36,4 @@ private: } -#endif /* defined(__brightray__browser_client__) */ +#endif diff --git a/brightray/browser/browser_context.h b/brightray/browser/browser_context.h index 2b2c603c69..3418e901cf 100644 --- a/brightray/browser/browser_context.h +++ b/brightray/browser/browser_context.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE-CHROMIUM file. -#ifndef __brightray__browser_context__ -#define __brightray__browser_context__ +#ifndef BRIGHTRAY_BROWSER_BROWSER_CONTEXT_H_ +#define BRIGHTRAY_BROWSER_BROWSER_CONTEXT_H_ #include "content/public/browser/browser_context.h" #include "content/public/browser/content_browser_client.h" @@ -43,4 +43,4 @@ private: } -#endif /* defined(__brightray__browser_context__) */ +#endif diff --git a/brightray/browser/browser_main_parts.h b/brightray/browser/browser_main_parts.h index 5e8194aa09..f86dd83268 100644 --- a/brightray/browser/browser_main_parts.h +++ b/brightray/browser/browser_main_parts.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE-CHROMIUM file. -#ifndef __brightray__main_parts__ -#define __brightray__main_parts__ +#ifndef BRIGHTRAY_BROWSER_BROWSER_MAIN_PARTS_H_ +#define BRIGHTRAY_BROWSER_BROWSER_MAIN_PARTS_H_ #include "base/compiler_specific.h" #include "base/memory/scoped_ptr.h" @@ -35,4 +35,4 @@ private: } -#endif /* defined(__brightray__main_parts__) */ +#endif diff --git a/brightray/browser/network_delegate.h b/brightray/browser/network_delegate.h index 54c98dca31..1d2645532f 100644 --- a/brightray/browser/network_delegate.h +++ b/brightray/browser/network_delegate.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE-CHROMIUM file. -#ifndef __brightray__network_delegate__ -#define __brightray__network_delegate__ +#ifndef BRIGHTRAY_BROWSER_NETWORK_DELEGATE_H_ +#define BRIGHTRAY_BROWSER_NETWORK_DELEGATE_H_ #include "net/base/network_delegate.h" @@ -38,4 +38,4 @@ private: } -#endif /* defined(__brightray__network_delegate__) */ +#endif diff --git a/brightray/browser/url_request_context_getter.h b/brightray/browser/url_request_context_getter.h index 89db0ec5b7..cb3c4edcb2 100644 --- a/brightray/browser/url_request_context_getter.h +++ b/brightray/browser/url_request_context_getter.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE-CHROMIUM file. -#ifndef __brightray__url_request_context_getter__ -#define __brightray__url_request_context_getter__ +#ifndef BRIGHTRAY_BROWSER_URL_REQUEST_CONTEXT_GETTER_H_ +#define BRIGHTRAY_BROWSER_URL_REQUEST_CONTEXT_GETTER_H_ #include "base/files/file_path.h" #include "base/memory/scoped_ptr.h" @@ -51,4 +51,4 @@ private: } -#endif /* defined(__brightray__url_request_context_getter__) */ +#endif diff --git a/brightray/common/main_delegate.h b/brightray/common/main_delegate.h index 9b56a7939e..0edc3f8cb9 100644 --- a/brightray/common/main_delegate.h +++ b/brightray/common/main_delegate.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE-CHROMIUM file. -#ifndef __brightray__main_delegate__ -#define __brightray__main_delegate__ +#ifndef BRIGHTRAY_COMMON_MAIN_DELEGATE_H_ +#define BRIGHTRAY_COMMON_MAIN_DELEGATE_H_ #include "base/compiler_specific.h" #include "base/memory/scoped_ptr.h" @@ -28,4 +28,4 @@ private: }; } -#endif /* defined(__brightray__main_delegate__) */ +#endif