summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gfx/point.h6
-rw-r--r--gfx/rect.h6
-rw-r--r--gfx/size.h6
3 files changed, 9 insertions, 9 deletions
diff --git a/gfx/point.h b/gfx/point.h
index 513d555..2914464 100644
--- a/gfx/point.h
+++ b/gfx/point.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef BASE_GFX_POINT_H__
-#define BASE_GFX_POINT_H__
+#ifndef GFX_POINT_H_
+#define GFX_POINT_H_
#include "build/build_config.h"
@@ -77,4 +77,4 @@ class Point {
std::ostream& operator<<(std::ostream& out, const gfx::Point& p);
-#endif // BASE_GFX_POINT_H__
+#endif // GFX_POINT_H_
diff --git a/gfx/rect.h b/gfx/rect.h
index c3c01ad..3ac9d19 100644
--- a/gfx/rect.h
+++ b/gfx/rect.h
@@ -9,8 +9,8 @@
// rectangles with negative width and/or height), but there will be assertions
// in the operations (such as contain()) to complain in this case.
-#ifndef BASE_GFX_RECT_H__
-#define BASE_GFX_RECT_H__
+#ifndef GFX_RECT_H_
+#define GFX_RECT_H_
#include <iosfwd>
@@ -162,4 +162,4 @@ class Rect {
std::ostream& operator<<(std::ostream& out, const gfx::Rect& r);
-#endif // BASE_GFX_RECT_H__
+#endif // GFX_RECT_H_
diff --git a/gfx/size.h b/gfx/size.h
index 896908e8..66bbfa8 100644
--- a/gfx/size.h
+++ b/gfx/size.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef BASE_GFX_SIZE_H_
-#define BASE_GFX_SIZE_H_
+#ifndef GFX_SIZE_H_
+#define GFX_SIZE_H_
#include "build/build_config.h"
@@ -80,4 +80,4 @@ class Size {
std::ostream& operator<<(std::ostream& out, const gfx::Size& s);
-#endif // BASE_GFX_SIZE_H_
+#endif // GFX_SIZE_H_