Skip to content

Commit

Permalink
[jumbo] move include guards in //cc closer to the top of the file
Browse files Browse the repository at this point in the history
Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.android:android_optional_gpu_tests_rel
Change-Id: I53311b06ea75519ea841d2ba2eca202bf3d8a26b
Reviewed-on: https://chromium-review.googlesource.com/882361
Reviewed-by: vmpstr <vmpstr@chromium.org>
Commit-Queue: Mostyn Bramley-Moore <mostynb@vewd.com>
Cr-Commit-Position: refs/heads/master@{#531612}
  • Loading branch information
mostynb authored and Commit Bot committed Jan 24, 2018
1 parent 9dc4362 commit 39abf7a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions cc/test/pixel_test.h
Original file line number Diff line number Diff line change
Expand Up @@ -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_TEST_PIXEL_TEST_H_
#define CC_TEST_PIXEL_TEST_H_

#include "base/files/file_util.h"
#include "cc/test/pixel_comparator.h"
#include "cc/trees/layer_tree_settings.h"
Expand All @@ -13,9 +16,6 @@
#include "ui/gfx/geometry/size.h"
#include "ui/gl/gl_implementation.h"

#ifndef CC_TEST_PIXEL_TEST_H_
#define CC_TEST_PIXEL_TEST_H_

namespace viz {
class CopyOutputResult;
class DirectRenderer;
Expand Down
6 changes: 3 additions & 3 deletions cc/trees/latency_info_swap_promise_monitor.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/compiler_specific.h"
#include "cc/trees/swap_promise_monitor.h"

#ifndef CC_TREES_LATENCY_INFO_SWAP_PROMISE_MONITOR_H_
#define CC_TREES_LATENCY_INFO_SWAP_PROMISE_MONITOR_H_

#include "base/compiler_specific.h"
#include "cc/trees/swap_promise_monitor.h"

namespace ui {
class LatencyInfo;
} // namespace ui
Expand Down

0 comments on commit 39abf7a

Please sign in to comment.