File chromium-gcc7.patch of Package chromium-ffmpeg-extra (Revision edff4236ea405746ad02b23f8de36ff9)
Currently displaying revision edff4236ea405746ad02b23f8de36ff9 , Show latest
26
1
Index: chromium-59.0.3071.83/third_party/WebKit/Source/platform/graphics/gpu/SharedGpuContext.h
2
===================================================================
3
--- chromium-59.0.3071.83.orig/third_party/WebKit/Source/platform/graphics/gpu/SharedGpuContext.h
4
+++ chromium-59.0.3071.83/third_party/WebKit/Source/platform/graphics/gpu/SharedGpuContext.h
5
6
#include "platform/PlatformExport.h"
7
#include "platform/wtf/ThreadSpecific.h"
8
9
+#include <functional>
10
#include <memory>
11
12
namespace gpu {
13
Index: chromium-59.0.3071.83/v8/src/objects-body-descriptors.h
14
===================================================================
15
--- chromium-59.0.3071.83.orig/v8/src/objects-body-descriptors.h
16
+++ chromium-59.0.3071.83/v8/src/objects-body-descriptors.h
17
18
19
template <typename StaticVisitor>
20
static inline void IterateBody(HeapObject* obj, int object_size) {
21
- IterateBody(obj);
22
+ IterateBody<StaticVisitor>(obj);
23
}
24
};
25
26