Skip to content

Commit

Permalink
Use Google-style header guards everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
aroben committed Mar 13, 2013
1 parent e451d92 commit 65dd011
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions brightray/browser/browser_client.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down Expand Up @@ -36,4 +36,4 @@ class BrowserClient : public content::ContentBrowserClient {

}

#endif /* defined(__brightray__browser_client__) */
#endif
6 changes: 3 additions & 3 deletions brightray/browser/browser_context.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -43,4 +43,4 @@ class BrowserContext : public content::BrowserContext {

}

#endif /* defined(__brightray__browser_context__) */
#endif
6 changes: 3 additions & 3 deletions brightray/browser/browser_main_parts.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -35,4 +35,4 @@ class BrowserMainParts : public content::BrowserMainParts {

}

#endif /* defined(__brightray__main_parts__) */
#endif
6 changes: 3 additions & 3 deletions brightray/browser/network_delegate.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down Expand Up @@ -38,4 +38,4 @@ class NetworkDelegate : public net::NetworkDelegate {

}

#endif /* defined(__brightray__network_delegate__) */
#endif
6 changes: 3 additions & 3 deletions brightray/browser/url_request_context_getter.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -51,4 +51,4 @@ class URLRequestContextGetter : public net::URLRequestContextGetter {

}

#endif /* defined(__brightray__url_request_context_getter__) */
#endif
6 changes: 3 additions & 3 deletions brightray/common/main_delegate.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -28,4 +28,4 @@ class MainDelegate : public content::ContentMainDelegate {
};

}
#endif /* defined(__brightray__main_delegate__) */
#endif

0 comments on commit 65dd011

Please sign in to comment.