Skip to content

Commit d76ae25

Browse files
committed
Add #pragma once to files
1 parent ef4b2dc commit d76ae25

File tree

6 files changed

+11
-2
lines changed

6 files changed

+11
-2
lines changed

CefSharp.BrowserSubprocess.Core/CefAppWrapper.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Copyright © 2010-2014 The CefSharp Project. All rights reserved.
22
//
33
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
4+
#pragma once
45

56
#include "Stdafx.h"
67

CefSharp.BrowserSubprocess.Core/CefAppWrapper.h

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
//
33
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
44

5+
#pragma once
6+
57
#include "Stdafx.h"
68
#include "JavascriptMethodHandler.h"
79
#include "JavascriptMethodWrapper.h"

CefSharp.BrowserSubprocess.Core/JavascriptPropertyHandler.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
//
33
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
44

5+
#pragma once
6+
57
#include "Stdafx.h"
68

79
#include "include/cef_v8.h"
810
#include "TypeUtils.h"
911

10-
#pragma once
11-
1212
namespace CefSharp
1313
{
1414
private class JavascriptPropertyHandler : public CefV8Accessor
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
#pragma once
2+
13
#include "Stdafx.h"

CefSharp.BrowserSubprocess.Core/TypeUtils.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
//
33
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
44

5+
#pragma once
6+
57
#include "Stdafx.h"
68
#include ".\..\CefSharp.Core\Internals\StringUtils.h"
79
#include "TypeUtils.h"

CefSharp.Core/Internals/StringUtils.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
//
33
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
44

5+
#pragma once
6+
57
#include "Stdafx.h"
68

79
using namespace System::Diagnostics;

0 commit comments

Comments
 (0)