Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style: use build/include_directory for NOLINT #23266

Merged
merged 1 commit into from Apr 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion shell/app/electron_content_client.cc
Expand Up @@ -25,7 +25,7 @@
#include "ui/base/resource/resource_bundle.h"
#include "url/url_constants.h"
// In SHARED_INTERMEDIATE_DIR.
#include "widevine_cdm_version.h" // NOLINT(build/include)
#include "widevine_cdm_version.h" // NOLINT(build/include_directory)

#if defined(WIDEVINE_CDM_AVAILABLE)
#include "base/native_library.h"
Expand Down
2 changes: 1 addition & 1 deletion shell/app/uv_task_runner.h
Expand Up @@ -10,7 +10,7 @@
#include "base/callback.h"
#include "base/location.h"
#include "base/single_thread_task_runner.h"
#include "uv.h" // NOLINT(build/include)
#include "uv.h" // NOLINT(build/include_directory)

namespace electron {

Expand Down
2 changes: 1 addition & 1 deletion shell/browser/javascript_environment.h
Expand Up @@ -9,7 +9,7 @@

#include "base/macros.h"
#include "gin/public/isolate_holder.h"
#include "uv.h" // NOLINT(build/include)
#include "uv.h" // NOLINT(build/include_directory)

namespace node {
class Environment;
Expand Down
2 changes: 1 addition & 1 deletion shell/common/api/electron_bindings.h
Expand Up @@ -14,7 +14,7 @@
#include "base/process/process_metrics.h"
#include "base/strings/string16.h"
#include "shell/common/gin_helper/promise.h"
#include "uv.h" // NOLINT(build/include)
#include "uv.h" // NOLINT(build/include_directory)

namespace gin_helper {
class Arguments;
Expand Down
2 changes: 1 addition & 1 deletion shell/common/electron_command_line.cc
Expand Up @@ -5,7 +5,7 @@
#include "shell/common/electron_command_line.h"

#include "base/command_line.h"
#include "uv.h" // NOLINT(build/include)
#include "uv.h" // NOLINT(build/include_directory)

namespace electron {

Expand Down
2 changes: 1 addition & 1 deletion shell/common/node_bindings.h
Expand Up @@ -9,7 +9,7 @@
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "base/single_thread_task_runner.h"
#include "uv.h" // NOLINT(build/include)
#include "uv.h" // NOLINT(build/include_directory)
#include "v8/include/v8.h"

namespace base {
Expand Down
2 changes: 1 addition & 1 deletion shell/renderer/renderer_client_base.h
Expand Up @@ -13,7 +13,7 @@
#include "electron/buildflags/buildflags.h"
#include "third_party/blink/public/web/web_local_frame.h"
// In SHARED_INTERMEDIATE_DIR.
#include "widevine_cdm_version.h" // NOLINT(build/include)
#include "widevine_cdm_version.h" // NOLINT(build/include_directory)

#if defined(WIDEVINE_CDM_AVAILABLE)
#include "chrome/renderer/media/chrome_key_systems_provider.h" // nogncheck
Expand Down