Use Google-style header guards everywhere
This commit is contained in:
parent
e451d92121
commit
65dd011fa3
6 changed files with 18 additions and 18 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue