diff options
author | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-11 11:31:49 +0000 |
---|---|---|
committer | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-11 11:31:49 +0000 |
commit | 519f500af69665604d57500ac7055edd87932d3f (patch) | |
tree | 1a445b025ca53687e05bd76f106774216afb4190 /cc | |
parent | bf8d1117618a2530f72159b2eb4cd8152f984125 (diff) | |
download | chromium_src-519f500af69665604d57500ac7055edd87932d3f.zip chromium_src-519f500af69665604d57500ac7055edd87932d3f.tar.gz chromium_src-519f500af69665604d57500ac7055edd87932d3f.tar.bz2 |
Fix header guard in cc/surfaces/display
R=jbauman@chromium.org
Review URL: https://codereview.chromium.org/327103002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@276347 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc')
-rw-r--r-- | cc/surfaces/display.cc | 5 | ||||
-rw-r--r-- | cc/surfaces/display.h | 5 |
2 files changed, 5 insertions, 5 deletions
diff --git a/cc/surfaces/display.cc b/cc/surfaces/display.cc index 823ab2c..e2e4a43 100644 --- a/cc/surfaces/display.cc +++ b/cc/surfaces/display.cc @@ -2,9 +2,6 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef CC_SURFACES_DISPLAY_H_ -#define CC_SURFACES_DISPLAY_H_ - #include "cc/surfaces/display.h" #include "base/message_loop/message_loop.h" @@ -165,5 +162,3 @@ void Display::ReturnResources(const ReturnedResourceArray& resources) { } } // namespace cc - -#endif // CC_SURFACES_DISPLAY_H_ diff --git a/cc/surfaces/display.h b/cc/surfaces/display.h index a36384b..1f8bf17 100644 --- a/cc/surfaces/display.h +++ b/cc/surfaces/display.h @@ -2,6 +2,9 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#ifndef CC_SURFACES_DISPLAY_H_ +#define CC_SURFACES_DISPLAY_H_ + #include "base/memory/scoped_ptr.h" #include "cc/output/output_surface_client.h" @@ -81,3 +84,5 @@ class CC_SURFACES_EXPORT Display : public SurfaceClient, }; } // namespace cc + +#endif // CC_SURFACES_DISPLAY_H_ |