Use Google-style header guards everywhere

This commit is contained in:
Adam Roben 2013-03-13 15:42:16 -04:00
parent e451d92121
commit 65dd011fa3
6 changed files with 18 additions and 18 deletions

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE-CHROMIUM file. // found in the LICENSE-CHROMIUM file.
#ifndef __brightray__browser_client__ #ifndef BRIGHTRAY_BROWSER_BROWSER_CLIENT_H_
#define __brightray__browser_client__ #define BRIGHTRAY_BROWSER_BROWSER_CLIENT_H_
#include "content/public/browser/content_browser_client.h" #include "content/public/browser/content_browser_client.h"
@ -36,4 +36,4 @@ private:
} }
#endif /* defined(__brightray__browser_client__) */ #endif

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE-CHROMIUM file. // found in the LICENSE-CHROMIUM file.
#ifndef __brightray__browser_context__ #ifndef BRIGHTRAY_BROWSER_BROWSER_CONTEXT_H_
#define __brightray__browser_context__ #define BRIGHTRAY_BROWSER_BROWSER_CONTEXT_H_
#include "content/public/browser/browser_context.h" #include "content/public/browser/browser_context.h"
#include "content/public/browser/content_browser_client.h" #include "content/public/browser/content_browser_client.h"
@ -43,4 +43,4 @@ private:
} }
#endif /* defined(__brightray__browser_context__) */ #endif

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE-CHROMIUM file. // found in the LICENSE-CHROMIUM file.
#ifndef __brightray__main_parts__ #ifndef BRIGHTRAY_BROWSER_BROWSER_MAIN_PARTS_H_
#define __brightray__main_parts__ #define BRIGHTRAY_BROWSER_BROWSER_MAIN_PARTS_H_
#include "base/compiler_specific.h" #include "base/compiler_specific.h"
#include "base/memory/scoped_ptr.h" #include "base/memory/scoped_ptr.h"
@ -35,4 +35,4 @@ private:
} }
#endif /* defined(__brightray__main_parts__) */ #endif

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE-CHROMIUM file. // found in the LICENSE-CHROMIUM file.
#ifndef __brightray__network_delegate__ #ifndef BRIGHTRAY_BROWSER_NETWORK_DELEGATE_H_
#define __brightray__network_delegate__ #define BRIGHTRAY_BROWSER_NETWORK_DELEGATE_H_
#include "net/base/network_delegate.h" #include "net/base/network_delegate.h"
@ -38,4 +38,4 @@ private:
} }
#endif /* defined(__brightray__network_delegate__) */ #endif

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE-CHROMIUM file. // found in the LICENSE-CHROMIUM file.
#ifndef __brightray__url_request_context_getter__ #ifndef BRIGHTRAY_BROWSER_URL_REQUEST_CONTEXT_GETTER_H_
#define __brightray__url_request_context_getter__ #define BRIGHTRAY_BROWSER_URL_REQUEST_CONTEXT_GETTER_H_
#include "base/files/file_path.h" #include "base/files/file_path.h"
#include "base/memory/scoped_ptr.h" #include "base/memory/scoped_ptr.h"
@ -51,4 +51,4 @@ private:
} }
#endif /* defined(__brightray__url_request_context_getter__) */ #endif

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE-CHROMIUM file. // found in the LICENSE-CHROMIUM file.
#ifndef __brightray__main_delegate__ #ifndef BRIGHTRAY_COMMON_MAIN_DELEGATE_H_
#define __brightray__main_delegate__ #define BRIGHTRAY_COMMON_MAIN_DELEGATE_H_
#include "base/compiler_specific.h" #include "base/compiler_specific.h"
#include "base/memory/scoped_ptr.h" #include "base/memory/scoped_ptr.h"
@ -28,4 +28,4 @@ private:
}; };
} }
#endif /* defined(__brightray__main_delegate__) */ #endif