Commit 519f500a authored by jamesr@chromium.org's avatar jamesr@chromium.org

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
parent bf8d1117
......@@ -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_
......@@ -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_
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment