1
+ --- a/chrome/browser/devtools/devtools_file_system_indexer.cc
2
+ +++ b/chrome/browser/devtools/devtools_file_system_indexer.cc
3
+ @@ -34,7 +34,6 @@ using base::TimeDelta;
4
+ using base::TimeTicks;
5
+ using content::BrowserThread;
6
+ using std::map;
7
+ - using std::set;
8
+ using std::string;
9
+ using std::vector;
10
+
11
+ @@ -191,7 +190,7 @@ vector<FilePath> Index::Search(const string& query) {
12
+ if (trigram != kUndefinedTrigram)
13
+ trigrams.push_back(trigram);
14
+ }
15
+ - set<FileId> file_ids;
16
+ + std::set<FileId> file_ids;
17
+ bool first = true;
18
+ vector<Trigram>::const_iterator it = trigrams.begin();
19
+ for (; it != trigrams.end(); ++it) {
20
+ @@ -203,7 +202,7 @@ vector<FilePath> Index::Search(const string& query) {
21
+ first = false;
22
+ continue;
23
+ }
24
+ - set<FileId> intersection = base::STLSetIntersection<set<FileId> >(
25
+ + std::set<FileId> intersection = base::STLSetIntersection<std::set<FileId> >(
26
+ file_ids, index_[trigram]);
27
+ file_ids.swap(intersection);
28
+ }
29
+ diff --git a/third_party/WebKit/Source/platform/wtf/typed_arrays/ArrayBufferContents.h b/third_party/WebKit/Source/platform/wtf/typed_arrays/ArrayBufferContents.h
30
+ index 94bb9161ec85..e40c6387f72e 100644
31
+ --- a/third_party/WebKit/Source/platform/wtf/typed_arrays/ArrayBufferContents.h
32
+ +++ b/third_party/WebKit/Source/platform/wtf/typed_arrays/ArrayBufferContents.h
33
+ @@ -63,7 +63,7 @@ class WTF_EXPORT ArrayBufferContents {
34
+ allocation_length_(0),
35
+ data_(data),
36
+ data_length_(0),
37
+ - kind_(AllocationKind::kNormal),
38
+ + kind_(WTF::ArrayBufferContents::AllocationKind::kNormal),
39
+ deleter_(deleter) {}
40
+ DataHandle(void* allocation_base,
41
+ size_t allocation_length,
42
+ @@ -94,11 +94,11 @@ class WTF_EXPORT ArrayBufferContents {
43
+ reinterpret_cast<uintptr_t>(allocation_base_) +
44
+ allocation_length_);
45
+ switch (kind_) {
46
+ - case AllocationKind::kNormal:
47
+ + case WTF::ArrayBufferContents::AllocationKind::kNormal:
48
+ DCHECK(deleter_);
49
+ deleter_(data_);
50
+ return;
51
+ - case AllocationKind::kReservation:
52
+ + case WTF::ArrayBufferContents::AllocationKind::kReservation:
53
+ ReleaseReservedMemory(allocation_base_, allocation_length_);
54
+ return;
55
+ }
56
+ --- a/third_party/webrtc/modules/audio_processing/aec3/aec_state.cc.orig 2017-08-15 12:45:59.433532111 +0000
57
+ +++ b/third_party/webrtc/modules/audio_processing/aec3/aec_state.cc 2017-08-15 17:52:59.691328825 +0000
58
+ @@ -10,7 +10,7 @@
59
+
60
+ #include "webrtc/modules/audio_processing/aec3/aec_state.h"
61
+
62
+ - #include <math.h>
63
+ + #include <cmath>
64
+ #include <numeric>
65
+ #include <vector>
66
+
0 commit comments