parent
407918e157
commit
86f726d9eb
@ -0,0 +1,13 @@
|
|||||||
|
diff -up chromium-56.0.2924.87/third_party/WebKit/Source/BUILD.gn.permissive chromium-56.0.2924.87/third_party/WebKit/Source/BUILD.gn
|
||||||
|
--- chromium-56.0.2924.87/third_party/WebKit/Source/BUILD.gn.permissive 2017-02-13 12:32:23.419665971 -0500
|
||||||
|
+++ chromium-56.0.2924.87/third_party/WebKit/Source/BUILD.gn 2017-02-13 12:33:16.146629190 -0500
|
||||||
|
@@ -54,6 +54,9 @@ config("config") {
|
||||||
|
cflags = []
|
||||||
|
defines = []
|
||||||
|
|
||||||
|
+ # error: there are no arguments to 'swapAnchor' that depend on a template parameter, so a declaration of 'swapAnchor' must be available [-fpermissive]
|
||||||
|
+ cflags += [ "-fpermissive" ]
|
||||||
|
+
|
||||||
|
if (is_win) {
|
||||||
|
cflags += [
|
||||||
|
"/wd4305", # Truncation from 'type1' to 'type2'.
|
@ -0,0 +1,12 @@
|
|||||||
|
diff -up chromium-56.0.2924.87/third_party/webrtc/modules/desktop_capture/screen_capturer_x11.cc.gcc49 chromium-56.0.2924.87/third_party/webrtc/modules/desktop_capture/screen_capturer_x11.cc
|
||||||
|
--- chromium-56.0.2924.87/third_party/webrtc/modules/desktop_capture/screen_capturer_x11.cc.gcc49 2017-02-13 11:41:35.563497836 -0500
|
||||||
|
+++ chromium-56.0.2924.87/third_party/webrtc/modules/desktop_capture/screen_capturer_x11.cc 2017-02-13 11:42:43.608161336 -0500
|
||||||
|
@@ -412,7 +412,7 @@ std::unique_ptr<DesktopCapturer> Desktop
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
- return capturer;
|
||||||
|
+ return std::move(capturer);
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace webrtc
|
Loading…
Reference in new issue