summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKirill Burtsev <kirill.burtsev@qt.io>2020-02-14 14:43:33 +0100
committerKirill Burtsev <kirill.burtsev@qt.io>2020-02-14 16:04:05 +0000
commitb4da69f7288e1f3974cf10642a735a021e3c90e9 (patch)
tree46e2b0be27974e551315296a6ad55edcf72d492d
parenta0781dc499809c340761721591a7bca78009d189 (diff)
downloadqtwebengine-chromium-b4da69f7288e1f3974cf10642a735a021e3c90e9.tar.gz
FIXUP: Fix building with MSVC 2017
Missing header when built without pch. Also silence warning on 32bit build. Change-Id: I3f73f9f6811ae78274120a3caa25238086ea6769 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
-rw-r--r--chromium/base/profiler/suspendable_thread_delegate.h1
-rw-r--r--chromium/third_party/blink/renderer/BUILD.gn1
2 files changed, 2 insertions, 0 deletions
diff --git a/chromium/base/profiler/suspendable_thread_delegate.h b/chromium/base/profiler/suspendable_thread_delegate.h
index b5dfcd7bf12..8ccf05cb909 100644
--- a/chromium/base/profiler/suspendable_thread_delegate.h
+++ b/chromium/base/profiler/suspendable_thread_delegate.h
@@ -5,6 +5,7 @@
#ifndef BASE_PROFILER_SUSPENDABLE_THREAD_DELEGATE_H_
#define BASE_PROFILER_SUSPENDABLE_THREAD_DELEGATE_H_
+#include <memory>
#include <vector>
#include "base/base_export.h"
diff --git a/chromium/third_party/blink/renderer/BUILD.gn b/chromium/third_party/blink/renderer/BUILD.gn
index 4489187e436..4948a4761ed 100644
--- a/chromium/third_party/blink/renderer/BUILD.gn
+++ b/chromium/third_party/blink/renderer/BUILD.gn
@@ -47,6 +47,7 @@ config("inside_blink") {
} else {
cflags += [
"/wd4101",
+ "/wd4805",
]
}
if (is_clang) {