Skip to content

Commit

Permalink
Do not treat headers from Chromium checkout as system header.
Browse files Browse the repository at this point in the history
Consistently use quotes instead of angle brackets when including header
files that are found in a Chromium checkout.

Change-Id: I53d1630c169fd2e54abaf5b56a72cda4b8639c6a
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2792743
Reviewed-by: Philip Jägenstedt <foolip@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Cr-Commit-Position: refs/heads/master@{#870680}
  • Loading branch information
leizleiz authored and Chromium LUCI CQ committed Apr 8, 2021
1 parent e19fc67 commit 5743c3d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion base/memory/discardable_memory.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@
// found in the LICENSE file.

#include "base/memory/discardable_memory.h"

#include "base/feature_list.h"
#include "base/memory/discardable_memory_internal.h"
#include "base/memory/madv_free_discardable_memory_posix.h"
#include "base/metrics/field_trial_params.h"
#include "build/build_config.h"

#if defined(OS_ANDROID)
#include <third_party/ashmem/ashmem.h>
#include "third_party/ashmem/ashmem.h"
#endif // defined(OS_ANDROID)

namespace base {
Expand Down
3 changes: 2 additions & 1 deletion chrome/browser/web_applications/web_app_proto_utils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
// found in the LICENSE file.

#include "chrome/browser/web_applications/web_app_proto_utils.h"
#include <third_party/blink/public/common/manifest/manifest.h>

#include "third_party/blink/public/common/manifest/manifest.h"

namespace web_app {

Expand Down
4 changes: 2 additions & 2 deletions third_party/blink/public/platform/web_double_size.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
#if INSIDE_BLINK
#include "third_party/blink/renderer/platform/geometry/double_size.h" // nogncheck
#else
#include <ui/gfx/geometry/size_f.h>
#include <ui/gfx/geometry/vector2d_f.h>
#include "ui/gfx/geometry/size_f.h"
#include "ui/gfx/geometry/vector2d_f.h"
#endif

namespace blink {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
// found in the LICENSE file.

#include "third_party/blink/renderer/modules/storage/storage_namespace.h"
#include <third_party/blink/renderer/modules/storage/storage_controller.h>

#include "base/task/post_task.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
Expand All @@ -12,6 +11,7 @@
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/features.h"
#include "third_party/blink/public/platform/scheduler/test/renderer_scheduler_test_support.h"
#include "third_party/blink/renderer/modules/storage/storage_controller.h"
#include "third_party/blink/renderer/modules/storage/testing/fake_area_source.h"
#include "third_party/blink/renderer/platform/scheduler/public/post_cross_thread_task.h"
#include "third_party/blink/renderer/platform/wtf/cross_thread_functional.h"
Expand Down

0 comments on commit 5743c3d

Please sign in to comment.