diff options
author | 2017-11-17 14:37:45 -0500 | |
---|---|---|
committer | 2017-11-17 14:38:12 -0500 | |
commit | e5c608fdfb37c9c8abb26b19afb15ea6d22aebc9 (patch) | |
tree | e6b87f22b60e8a20d023f15ed7234c2f460627bb /www-client | |
parent | www-client/vivaldi-snapshot: Old. (diff) | |
download | gentoo-e5c608fdfb37c9c8abb26b19afb15ea6d22aebc9.tar.gz gentoo-e5c608fdfb37c9c8abb26b19afb15ea6d22aebc9.tar.bz2 gentoo-e5c608fdfb37c9c8abb26b19afb15ea6d22aebc9.zip |
www-client/chromium: remove old patches
Package-Manager: Portage-2.3.14_p5, Repoman-2.3.6
Diffstat (limited to 'www-client')
8 files changed, 0 insertions, 229 deletions
diff --git a/www-client/chromium/files/chromium-64.0.3253.3-gpu_lists_version.h.patch b/www-client/chromium/files/chromium-64.0.3253.3-gpu_lists_version.h.patch deleted file mode 100644 index c961cb6eaf5a..000000000000 --- a/www-client/chromium/files/chromium-64.0.3253.3-gpu_lists_version.h.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- /dev/null -+++ a/gpu/config/gpu_lists_version.h -@@ -0,0 +1,8 @@ -+/* Generated by lastchange.py, do not edit.*/ -+ -+#ifndef GPU_CONFIG_GPU_LISTS_VERSION_H_ -+#define GPU_CONFIG_GPU_LISTS_VERSION_H_ -+ -+#define GPU_LISTS_VERSION "0a025c20792ce26a88112a00c936f463f190d394" -+ -+#endif // GPU_CONFIG_GPU_LISTS_VERSION_H_ diff --git a/www-client/chromium/files/chromium-atk-r1.patch b/www-client/chromium/files/chromium-atk-r1.patch deleted file mode 100644 index 32fa29975b3e..000000000000 --- a/www-client/chromium/files/chromium-atk-r1.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/content/browser/accessibility/browser_accessibility_auralinux.cc.orig 2017-07-27 06:28:01.090257874 +0000 -+++ b/content/browser/accessibility/browser_accessibility_auralinux.cc 2017-07-27 06:28:21.174653680 +0000 -@@ -571,7 +571,7 @@ - // it's best to leave this out rather than break people's builds: - #if defined(ATK_CHECK_VERSION) - #if ATK_CHECK_VERSION(2, 16, 0) -- atk_state_set_add_state(atk_state_set, ATK_STATE_READ_ONLY); -+ atk_state_set_add_state(state_set, ATK_STATE_READ_ONLY); - #endif - #endif - break; diff --git a/www-client/chromium/files/chromium-gcc-r1.patch b/www-client/chromium/files/chromium-gcc-r1.patch deleted file mode 100644 index 2acd11ed5b08..000000000000 --- a/www-client/chromium/files/chromium-gcc-r1.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff --git a/base/numerics/safe_math_shared_impl.h b/base/numerics/safe_math_shared_impl.h -index 99f230ce7e9a..de2415d402f5 100644 ---- a/base/numerics/safe_math_shared_impl.h -+++ b/base/numerics/safe_math_shared_impl.h -@@ -21,8 +21,7 @@ - #if !defined(__native_client__) && \ - ((defined(__clang__) && \ - ((__clang_major__ > 3) || \ -- (__clang_major__ == 3 && __clang_minor__ >= 4))) || \ -- (defined(__GNUC__) && __GNUC__ >= 5)) -+ (__clang_major__ == 3 && __clang_minor__ >= 4)))) - #include "base/numerics/safe_math_clang_gcc_impl.h" - #define BASE_HAS_OPTIMIZED_SAFE_MATH (1) - #else diff --git a/www-client/chromium/files/chromium-gcc5-r1.patch b/www-client/chromium/files/chromium-gcc5-r1.patch deleted file mode 100644 index ec3e3e663436..000000000000 --- a/www-client/chromium/files/chromium-gcc5-r1.patch +++ /dev/null @@ -1,66 +0,0 @@ ---- a/chrome/browser/devtools/devtools_file_system_indexer.cc -+++ b/chrome/browser/devtools/devtools_file_system_indexer.cc -@@ -34,7 +34,6 @@ using base::TimeDelta; - using base::TimeTicks; - using content::BrowserThread; - using std::map; --using std::set; - using std::string; - using std::vector; - -@@ -191,7 +190,7 @@ vector<FilePath> Index::Search(const string& query) { - if (trigram != kUndefinedTrigram) - trigrams.push_back(trigram); - } -- set<FileId> file_ids; -+ std::set<FileId> file_ids; - bool first = true; - vector<Trigram>::const_iterator it = trigrams.begin(); - for (; it != trigrams.end(); ++it) { -@@ -203,7 +202,7 @@ vector<FilePath> Index::Search(const string& query) { - first = false; - continue; - } -- set<FileId> intersection = base::STLSetIntersection<set<FileId> >( -+ std::set<FileId> intersection = base::STLSetIntersection<std::set<FileId> >( - file_ids, index_[trigram]); - file_ids.swap(intersection); - } -diff --git a/third_party/WebKit/Source/platform/wtf/typed_arrays/ArrayBufferContents.h b/third_party/WebKit/Source/platform/wtf/typed_arrays/ArrayBufferContents.h -index 94bb9161ec85..e40c6387f72e 100644 ---- a/third_party/WebKit/Source/platform/wtf/typed_arrays/ArrayBufferContents.h -+++ b/third_party/WebKit/Source/platform/wtf/typed_arrays/ArrayBufferContents.h -@@ -63,7 +63,7 @@ class WTF_EXPORT ArrayBufferContents { - allocation_length_(0), - data_(data), - data_length_(0), -- kind_(AllocationKind::kNormal), -+ kind_(WTF::ArrayBufferContents::AllocationKind::kNormal), - deleter_(deleter) {} - DataHandle(void* allocation_base, - size_t allocation_length, -@@ -94,11 +94,11 @@ class WTF_EXPORT ArrayBufferContents { - reinterpret_cast<uintptr_t>(allocation_base_) + - allocation_length_); - switch (kind_) { -- case AllocationKind::kNormal: -+ case WTF::ArrayBufferContents::AllocationKind::kNormal: - DCHECK(deleter_); - deleter_(data_); - return; -- case AllocationKind::kReservation: -+ case WTF::ArrayBufferContents::AllocationKind::kReservation: - ReleaseReservedMemory(allocation_base_, allocation_length_); - return; - } ---- a/third_party/webrtc/modules/audio_processing/aec3/aec_state.cc.orig 2017-08-15 12:45:59.433532111 +0000 -+++ b/third_party/webrtc/modules/audio_processing/aec3/aec_state.cc 2017-08-15 17:52:59.691328825 +0000 -@@ -10,7 +10,7 @@ - - #include "webrtc/modules/audio_processing/aec3/aec_state.h" - --#include <math.h> -+#include <cmath> - #include <numeric> - #include <vector> - diff --git a/www-client/chromium/files/chromium-gn-bootstrap-r14.patch b/www-client/chromium/files/chromium-gn-bootstrap-r14.patch deleted file mode 100644 index 3c44c858f78d..000000000000 --- a/www-client/chromium/files/chromium-gn-bootstrap-r14.patch +++ /dev/null @@ -1,27 +0,0 @@ -commit 96c271f8ab2be7ea4199078ea65ac50c6ada4685 -Author: Pawel Hajdan, Jr <phajdan.jr@chromium.org> -Date: Wed Jul 26 21:51:54 2017 +0000 - - wip - -diff --git a/tools/gn/bootstrap/bootstrap.py b/tools/gn/bootstrap/bootstrap.py -index 1390560f8e37..ff2ae57c46b0 100755 ---- a/tools/gn/bootstrap/bootstrap.py -+++ b/tools/gn/bootstrap/bootstrap.py -@@ -449,6 +449,7 @@ def write_gn_ninja(path, root_gen_dir, options): - 'base/metrics/histogram_base.cc', - 'base/metrics/histogram_functions.cc', - 'base/metrics/histogram_samples.cc', -+ 'base/metrics/histogram_snapshot_manager.cc', - 'base/metrics/metrics_hashes.cc', - 'base/metrics/persistent_histogram_allocator.cc', - 'base/metrics/persistent_memory_allocator.cc', -@@ -534,7 +535,7 @@ def write_gn_ninja(path, root_gen_dir, options): - 'base/trace_event/heap_profiler_allocation_context_tracker.cc', - 'base/trace_event/heap_profiler_allocation_register.cc', - 'base/trace_event/heap_profiler_event_filter.cc', -- 'base/trace_event/heap_profiler_event_writer.cc', -+ 'base/trace_event/heap_profiler_heap_dump_writer.cc', - 'base/trace_event/heap_profiler_serialization_state.cc', - 'base/trace_event/heap_profiler_stack_frame_deduplicator.cc', - 'base/trace_event/heap_profiler_type_name_deduplicator.cc', diff --git a/www-client/chromium/files/chromium-gn-bootstrap-r20.patch b/www-client/chromium/files/chromium-gn-bootstrap-r20.patch deleted file mode 100644 index 4b339e035459..000000000000 --- a/www-client/chromium/files/chromium-gn-bootstrap-r20.patch +++ /dev/null @@ -1,18 +0,0 @@ ---- a/tools/gn/bootstrap/bootstrap.py -+++ b/tools/gn/bootstrap/bootstrap.py -@@ -546,6 +546,7 @@ def write_gn_ninja(path, root_gen_dir, options): - 'base/timer/timer.cc', - 'base/trace_event/category_registry.cc', - 'base/trace_event/event_name_filter.cc', -+ 'base/trace_event/freed_object_tracker.cc', - 'base/trace_event/heap_profiler_allocation_context.cc', - 'base/trace_event/heap_profiler_allocation_context_tracker.cc', - 'base/trace_event/heap_profiler_allocation_register.cc', -@@ -605,7 +606,6 @@ def write_gn_ninja(path, root_gen_dir, options): - 'base/strings/string16.cc', - 'base/synchronization/condition_variable_posix.cc', - 'base/synchronization/lock_impl_posix.cc', -- 'base/synchronization/read_write_lock_posix.cc', - 'base/sys_info_posix.cc', - 'base/task_scheduler/task_tracker_posix.cc', - 'base/threading/platform_thread_internal_posix.cc', diff --git a/www-client/chromium/files/chromium-gn-bootstrap-r21.patch b/www-client/chromium/files/chromium-gn-bootstrap-r21.patch deleted file mode 100644 index f3127af09ec0..000000000000 --- a/www-client/chromium/files/chromium-gn-bootstrap-r21.patch +++ /dev/null @@ -1,28 +0,0 @@ -diff --git a/tools/gn/bootstrap/bootstrap.py b/tools/gn/bootstrap/bootstrap.py -index 601d5331698e..f154ed2ef3e6 100755 ---- a/tools/gn/bootstrap/bootstrap.py -+++ b/tools/gn/bootstrap/bootstrap.py -@@ -536,7 +536,6 @@ def write_gn_ninja(path, root_gen_dir, options): - 'base/threading/thread_local_storage.cc', - 'base/threading/thread_restrictions.cc', - 'base/threading/thread_task_runner_handle.cc', -- 'base/threading/worker_pool.cc', - 'base/time/clock.cc', - 'base/time/default_clock.cc', - 'base/time/default_tick_clock.cc', -@@ -546,7 +545,6 @@ def write_gn_ninja(path, root_gen_dir, options): - 'base/timer/timer.cc', - 'base/trace_event/category_registry.cc', - 'base/trace_event/event_name_filter.cc', -- 'base/trace_event/freed_object_tracker.cc', - 'base/trace_event/heap_profiler_allocation_context.cc', - 'base/trace_event/heap_profiler_allocation_context_tracker.cc', - 'base/trace_event/heap_profiler_allocation_register.cc', -@@ -611,7 +609,6 @@ def write_gn_ninja(path, root_gen_dir, options): - 'base/threading/platform_thread_internal_posix.cc', - 'base/threading/platform_thread_posix.cc', - 'base/threading/thread_local_storage_posix.cc', -- 'base/threading/worker_pool_posix.cc', - 'base/time/time_conversion_posix.cc', - 'base/trace_event/heap_profiler_allocation_register_posix.cc', - ]) diff --git a/www-client/chromium/files/chromium-mojo-dep.patch b/www-client/chromium/files/chromium-mojo-dep.patch deleted file mode 100644 index bf618540d174..000000000000 --- a/www-client/chromium/files/chromium-mojo-dep.patch +++ /dev/null @@ -1,54 +0,0 @@ -From f8e2c057ec6123b0a1d08294f41e78c427636b49 Mon Sep 17 00:00:00 2001 -From: Mike Bjorge <mbjorge@chromium.org> -Date: Mon, 7 Aug 2017 18:41:58 +0000 -Subject: [PATCH] Add mojo_blink dep from WebKit loader/. - -Now that loader has a direct dependency on the generated mojom-blink -headers (https://chromium-review.googlesource.com/c/577488), the loader/ -target should have a dep on the mojo target that generates the headers, -otherwise the build may fail depending on build order. - -All the other platform/ targets that depend on the mojom-blink headers -are directly included in the platform target, which has the necessary -dependency already. - -Bug: 746197 -Bug: 750883 -Change-Id: Ife1429ec649605aae3f7920560cec37f3a218154 -Reviewed-on: https://chromium-review.googlesource.com/602869 -Reviewed-by: Yutaka Hirano <yhirano@chromium.org> -Reviewed-by: Matt Falkenhagen <falken@chromium.org> -Commit-Queue: Mike Bjorge <mbjorge@chromium.org> -Cr-Commit-Position: refs/heads/master@{#492369} ---- - third_party/WebKit/Source/platform/loader/BUILD.gn | 1 + - third_party/WebKit/public/BUILD.gn | 1 + - 2 files changed, 2 insertions(+) - -diff --git a/third_party/WebKit/Source/platform/loader/BUILD.gn b/third_party/WebKit/Source/platform/loader/BUILD.gn -index d483734b21cf..409befe884a8 100644 ---- a/third_party/WebKit/Source/platform/loader/BUILD.gn -+++ b/third_party/WebKit/Source/platform/loader/BUILD.gn -@@ -99,6 +99,7 @@ source_set("loader") { - "//components/link_header_util:link_header_util", - "//mojo/public/cpp/system:system", - "//storage/public/interfaces:interfaces_blink__generator", -+ "//third_party/WebKit/public:mojo_bindings_blink", - ] - - public_deps = [ -diff --git a/third_party/WebKit/public/BUILD.gn b/third_party/WebKit/public/BUILD.gn -index 84ee3ca9136d..cc847663efc6 100644 ---- a/third_party/WebKit/public/BUILD.gn -+++ b/third_party/WebKit/public/BUILD.gn -@@ -755,6 +755,7 @@ mojom("mojo_bindings") { - visibility_blink = [ - "//content/common:mojo_bindings_blink", - "//third_party/WebKit/Source/platform", -+ "//third_party/WebKit/Source/platform/loader", - ] - sources = [ - "platform/display_mode.mojom", --- -2.14.0 - |