2020-03-11 14:50:16 +00:00
|
|
|
diff -up chromium-80.0.3987.132/chrome/common/media_router/media_sink.cc.el7-noexcept chromium-80.0.3987.132/chrome/common/media_router/media_sink.cc
|
|
|
|
--- chromium-80.0.3987.132/chrome/common/media_router/media_sink.cc.el7-noexcept 2020-03-03 13:53:03.000000000 -0500
|
|
|
|
+++ chromium-80.0.3987.132/chrome/common/media_router/media_sink.cc 2020-03-11 10:47:13.352162096 -0400
|
2019-11-01 12:34:49 +00:00
|
|
|
@@ -19,12 +19,12 @@ MediaSink::MediaSink(const MediaSink::Id
|
|
|
|
provider_id_(provider_id) {}
|
|
|
|
|
|
|
|
MediaSink::MediaSink(const MediaSink& other) = default;
|
|
|
|
-MediaSink::MediaSink(MediaSink&& other) noexcept = default;
|
|
|
|
+MediaSink::MediaSink(MediaSink&& other) = default;
|
|
|
|
MediaSink::MediaSink() = default;
|
|
|
|
MediaSink::~MediaSink() = default;
|
|
|
|
|
|
|
|
MediaSink& MediaSink::operator=(const MediaSink& other) = default;
|
|
|
|
-MediaSink& MediaSink::operator=(MediaSink&& other) noexcept = default;
|
|
|
|
+MediaSink& MediaSink::operator=(MediaSink&& other) = default;
|
|
|
|
|
|
|
|
bool MediaSink::IsMaybeCloudSink() const {
|
|
|
|
switch (icon_type_) {
|
2020-03-11 14:50:16 +00:00
|
|
|
diff -up chromium-80.0.3987.132/components/history/core/browser/history_types.cc.el7-noexcept chromium-80.0.3987.132/components/history/core/browser/history_types.cc
|
|
|
|
--- chromium-80.0.3987.132/components/history/core/browser/history_types.cc.el7-noexcept 2020-03-03 13:53:53.000000000 -0500
|
|
|
|
+++ chromium-80.0.3987.132/components/history/core/browser/history_types.cc 2020-03-11 10:47:13.352162096 -0400
|
2019-11-01 12:34:49 +00:00
|
|
|
@@ -42,7 +42,7 @@ QueryResults::QueryResults(QueryResults&
|
|
|
|
Swap(&other);
|
|
|
|
}
|
|
|
|
|
|
|
|
-QueryResults& QueryResults::operator=(QueryResults&& other) noexcept {
|
|
|
|
+QueryResults& QueryResults::operator=(QueryResults&& other) {
|
|
|
|
Swap(&other);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
@@ -186,7 +186,7 @@ QueryURLResult::QueryURLResult(QueryURLR
|
|
|
|
|
|
|
|
QueryURLResult& QueryURLResult::operator=(const QueryURLResult&) = default;
|
|
|
|
|
|
|
|
-QueryURLResult& QueryURLResult::operator=(QueryURLResult&&) noexcept = default;
|
|
|
|
+QueryURLResult& QueryURLResult::operator=(QueryURLResult&&) = default;
|
|
|
|
|
|
|
|
// MostVisitedURL --------------------------------------------------------------
|
|
|
|
|
2020-03-11 14:50:16 +00:00
|
|
|
diff -up chromium-80.0.3987.132/components/history/core/browser/history_types.h.el7-noexcept chromium-80.0.3987.132/components/history/core/browser/history_types.h
|
|
|
|
--- chromium-80.0.3987.132/components/history/core/browser/history_types.h.el7-noexcept 2020-03-03 13:53:53.000000000 -0500
|
|
|
|
+++ chromium-80.0.3987.132/components/history/core/browser/history_types.h 2020-03-11 10:47:13.352162096 -0400
|
2019-12-03 20:08:38 +00:00
|
|
|
@@ -141,7 +141,7 @@ class QueryResults {
|
2019-11-01 12:34:49 +00:00
|
|
|
~QueryResults();
|
|
|
|
|
|
|
|
QueryResults(QueryResults&& other) noexcept;
|
|
|
|
- QueryResults& operator=(QueryResults&& other) noexcept;
|
|
|
|
+ QueryResults& operator=(QueryResults&& other);
|
|
|
|
|
|
|
|
void set_reached_beginning(bool reached) { reached_beginning_ = reached; }
|
|
|
|
bool reached_beginning() { return reached_beginning_; }
|
2019-12-03 20:08:38 +00:00
|
|
|
@@ -276,7 +276,7 @@ struct QueryURLResult {
|
2019-11-01 12:34:49 +00:00
|
|
|
QueryURLResult(const QueryURLResult&);
|
|
|
|
QueryURLResult(QueryURLResult&&) noexcept;
|
|
|
|
QueryURLResult& operator=(const QueryURLResult&);
|
|
|
|
- QueryURLResult& operator=(QueryURLResult&&) noexcept;
|
|
|
|
+ QueryURLResult& operator=(QueryURLResult&&);
|
|
|
|
~QueryURLResult();
|
|
|
|
|
|
|
|
// Indicates whether the call to HistoryBackend::QueryURL was successfull
|
2020-03-11 14:50:16 +00:00
|
|
|
diff -up chromium-80.0.3987.132/components/history/core/browser/url_row.cc.el7-noexcept chromium-80.0.3987.132/components/history/core/browser/url_row.cc
|
|
|
|
--- chromium-80.0.3987.132/components/history/core/browser/url_row.cc.el7-noexcept 2020-03-03 13:53:05.000000000 -0500
|
|
|
|
+++ chromium-80.0.3987.132/components/history/core/browser/url_row.cc 2020-03-11 10:47:13.352162096 -0400
|
2019-11-01 12:34:49 +00:00
|
|
|
@@ -26,7 +26,7 @@ URLRow::~URLRow() {
|
|
|
|
}
|
|
|
|
|
|
|
|
URLRow& URLRow::operator=(const URLRow& other) = default;
|
|
|
|
-URLRow& URLRow::operator=(URLRow&& other) noexcept = default;
|
|
|
|
+URLRow& URLRow::operator=(URLRow&& other) = default;
|
|
|
|
|
|
|
|
void URLRow::Swap(URLRow* other) {
|
|
|
|
std::swap(id_, other->id_);
|
2020-03-11 14:50:16 +00:00
|
|
|
diff -up chromium-80.0.3987.132/components/omnibox/browser/suggestion_answer.cc.el7-noexcept chromium-80.0.3987.132/components/omnibox/browser/suggestion_answer.cc
|
|
|
|
--- chromium-80.0.3987.132/components/omnibox/browser/suggestion_answer.cc.el7-noexcept 2020-03-03 13:53:06.000000000 -0500
|
|
|
|
+++ chromium-80.0.3987.132/components/omnibox/browser/suggestion_answer.cc 2020-03-11 10:47:13.352162096 -0400
|
2019-11-01 12:34:49 +00:00
|
|
|
@@ -60,7 +60,7 @@ SuggestionAnswer::TextField::TextField(T
|
|
|
|
SuggestionAnswer::TextField& SuggestionAnswer::TextField::operator=(
|
|
|
|
const TextField&) = default;
|
|
|
|
SuggestionAnswer::TextField& SuggestionAnswer::TextField::operator=(
|
|
|
|
- TextField&&) noexcept = default;
|
|
|
|
+ TextField&&) = default;
|
|
|
|
|
|
|
|
// static
|
|
|
|
bool SuggestionAnswer::TextField::ParseTextField(const base::Value& field_json,
|
2020-03-11 14:50:16 +00:00
|
|
|
diff -up chromium-80.0.3987.132/components/policy/core/common/policy_map.cc.el7-noexcept chromium-80.0.3987.132/components/policy/core/common/policy_map.cc
|
|
|
|
--- chromium-80.0.3987.132/components/policy/core/common/policy_map.cc.el7-noexcept 2020-03-03 13:53:53.000000000 -0500
|
|
|
|
+++ chromium-80.0.3987.132/components/policy/core/common/policy_map.cc 2020-03-11 10:47:13.353162076 -0400
|
2019-11-01 12:34:49 +00:00
|
|
|
@@ -52,7 +52,7 @@ PolicyMap::Entry::Entry(
|
|
|
|
PolicyMap::Entry::~Entry() = default;
|
|
|
|
|
|
|
|
PolicyMap::Entry::Entry(Entry&&) noexcept = default;
|
|
|
|
-PolicyMap::Entry& PolicyMap::Entry::operator=(Entry&&) noexcept = default;
|
|
|
|
+PolicyMap::Entry& PolicyMap::Entry::operator=(Entry&&) = default;
|
|
|
|
|
|
|
|
PolicyMap::Entry PolicyMap::Entry::DeepCopy() const {
|
2019-12-03 20:08:38 +00:00
|
|
|
Entry copy(level, scope, source, value ? value->CreateDeepCopy() : nullptr,
|
2020-03-11 14:50:16 +00:00
|
|
|
diff -up chromium-80.0.3987.132/components/search_provider_logos/logo_common.cc.el7-noexcept chromium-80.0.3987.132/components/search_provider_logos/logo_common.cc
|
|
|
|
--- chromium-80.0.3987.132/components/search_provider_logos/logo_common.cc.el7-noexcept 2020-03-03 13:53:06.000000000 -0500
|
|
|
|
+++ chromium-80.0.3987.132/components/search_provider_logos/logo_common.cc 2020-03-11 10:47:13.353162076 -0400
|
2019-11-01 12:34:49 +00:00
|
|
|
@@ -14,14 +14,14 @@ LogoMetadata::LogoMetadata() = default;
|
|
|
|
LogoMetadata::LogoMetadata(const LogoMetadata&) = default;
|
|
|
|
LogoMetadata::LogoMetadata(LogoMetadata&&) noexcept = default;
|
|
|
|
LogoMetadata& LogoMetadata::operator=(const LogoMetadata&) = default;
|
|
|
|
-LogoMetadata& LogoMetadata::operator=(LogoMetadata&&) noexcept = default;
|
|
|
|
+LogoMetadata& LogoMetadata::operator=(LogoMetadata&&) = default;
|
|
|
|
LogoMetadata::~LogoMetadata() = default;
|
|
|
|
|
|
|
|
EncodedLogo::EncodedLogo() = default;
|
|
|
|
EncodedLogo::EncodedLogo(const EncodedLogo&) = default;
|
|
|
|
EncodedLogo::EncodedLogo(EncodedLogo&&) noexcept = default;
|
|
|
|
EncodedLogo& EncodedLogo::operator=(const EncodedLogo&) = default;
|
|
|
|
-EncodedLogo& EncodedLogo::operator=(EncodedLogo&&) noexcept = default;
|
|
|
|
+EncodedLogo& EncodedLogo::operator=(EncodedLogo&&) = default;
|
|
|
|
EncodedLogo::~EncodedLogo() = default;
|
|
|
|
|
|
|
|
Logo::Logo() = default;
|
|
|
|
@@ -29,7 +29,7 @@ Logo::~Logo() = default;
|
|
|
|
|
|
|
|
LogoCallbacks::LogoCallbacks() = default;
|
|
|
|
LogoCallbacks::LogoCallbacks(LogoCallbacks&&) noexcept = default;
|
|
|
|
-LogoCallbacks& LogoCallbacks::operator=(LogoCallbacks&&) noexcept = default;
|
|
|
|
+LogoCallbacks& LogoCallbacks::operator=(LogoCallbacks&&) = default;
|
|
|
|
LogoCallbacks::~LogoCallbacks() = default;
|
|
|
|
|
|
|
|
} // namespace search_provider_logos
|
2020-03-11 14:50:16 +00:00
|
|
|
diff -up chromium-80.0.3987.132/components/signin/public/identity_manager/account_info.cc.el7-noexcept chromium-80.0.3987.132/components/signin/public/identity_manager/account_info.cc
|
|
|
|
--- chromium-80.0.3987.132/components/signin/public/identity_manager/account_info.cc.el7-noexcept 2020-03-03 13:53:54.000000000 -0500
|
|
|
|
+++ chromium-80.0.3987.132/components/signin/public/identity_manager/account_info.cc 2020-03-11 10:47:13.353162076 -0400
|
2019-12-03 20:08:38 +00:00
|
|
|
@@ -58,7 +58,7 @@ CoreAccountInfo::CoreAccountInfo(CoreAcc
|
2019-11-01 12:34:49 +00:00
|
|
|
CoreAccountInfo& CoreAccountInfo::operator=(const CoreAccountInfo& other) =
|
|
|
|
default;
|
|
|
|
|
|
|
|
-CoreAccountInfo& CoreAccountInfo::operator=(CoreAccountInfo&& other) noexcept =
|
|
|
|
+CoreAccountInfo& CoreAccountInfo::operator=(CoreAccountInfo&& other) =
|
|
|
|
default;
|
|
|
|
|
|
|
|
bool CoreAccountInfo::IsEmpty() const {
|
2019-12-03 20:08:38 +00:00
|
|
|
@@ -75,7 +75,7 @@ AccountInfo::AccountInfo(AccountInfo&& o
|
2019-11-01 12:34:49 +00:00
|
|
|
|
|
|
|
AccountInfo& AccountInfo::operator=(const AccountInfo& other) = default;
|
|
|
|
|
|
|
|
-AccountInfo& AccountInfo::operator=(AccountInfo&& other) noexcept = default;
|
|
|
|
+AccountInfo& AccountInfo::operator=(AccountInfo&& other) = default;
|
|
|
|
|
|
|
|
bool AccountInfo::IsEmpty() const {
|
|
|
|
return CoreAccountInfo::IsEmpty() && hosted_domain.empty() &&
|
2020-03-11 14:50:16 +00:00
|
|
|
diff -up chromium-80.0.3987.132/google_apis/gaia/core_account_id.cc.el7-noexcept chromium-80.0.3987.132/google_apis/gaia/core_account_id.cc
|
|
|
|
--- chromium-80.0.3987.132/google_apis/gaia/core_account_id.cc.el7-noexcept 2020-03-11 10:47:13.684155381 -0400
|
|
|
|
+++ chromium-80.0.3987.132/google_apis/gaia/core_account_id.cc 2020-03-11 10:48:18.241848293 -0400
|
|
|
|
@@ -24,7 +24,7 @@ CoreAccountId::~CoreAccountId() = defaul
|
2019-11-01 12:34:49 +00:00
|
|
|
|
|
|
|
CoreAccountId& CoreAccountId::operator=(const CoreAccountId&) = default;
|
|
|
|
|
|
|
|
-CoreAccountId& CoreAccountId::operator=(CoreAccountId&&) noexcept = default;
|
|
|
|
+CoreAccountId& CoreAccountId::operator=(CoreAccountId&&) = default;
|
|
|
|
|
2020-03-11 14:50:16 +00:00
|
|
|
// static
|
|
|
|
CoreAccountId CoreAccountId::FromGaiaId(const std::string& gaia_id) {
|
|
|
|
@@ -82,4 +82,4 @@ std::vector<std::string> ToStringList(
|
|
|
|
for (const auto& account_id : account_ids)
|
|
|
|
account_ids_string.push_back(account_id.ToString());
|
|
|
|
return account_ids_string;
|
|
|
|
-}
|
|
|
|
\ No newline at end of file
|
|
|
|
+}
|
|
|
|
diff -up chromium-80.0.3987.132/google_apis/gaia/core_account_id.h.el7-noexcept chromium-80.0.3987.132/google_apis/gaia/core_account_id.h
|
|
|
|
--- chromium-80.0.3987.132/google_apis/gaia/core_account_id.h.el7-noexcept 2020-03-11 10:47:13.686155340 -0400
|
|
|
|
+++ chromium-80.0.3987.132/google_apis/gaia/core_account_id.h 2020-03-11 10:48:47.857248531 -0400
|
|
|
|
@@ -30,7 +30,7 @@ struct CoreAccountId {
|
2019-11-01 12:34:49 +00:00
|
|
|
~CoreAccountId();
|
|
|
|
|
|
|
|
CoreAccountId& operator=(const CoreAccountId&);
|
|
|
|
- CoreAccountId& operator=(CoreAccountId&&) noexcept;
|
|
|
|
+ CoreAccountId& operator=(CoreAccountId&&);
|
|
|
|
|
2020-03-11 14:50:16 +00:00
|
|
|
// Checks if the account is valid or not.
|
|
|
|
bool empty() const;
|
|
|
|
diff -up chromium-80.0.3987.132/gpu/config/gpu_info.cc.el7-noexcept chromium-80.0.3987.132/gpu/config/gpu_info.cc
|
|
|
|
--- chromium-80.0.3987.132/gpu/config/gpu_info.cc.el7-noexcept 2020-03-03 13:53:55.000000000 -0500
|
|
|
|
+++ chromium-80.0.3987.132/gpu/config/gpu_info.cc 2020-03-11 10:47:13.689155280 -0400
|
2019-12-03 20:08:38 +00:00
|
|
|
@@ -173,7 +173,7 @@ GPUInfo::GPUDevice& GPUInfo::GPUDevice::
|
2019-11-01 12:34:49 +00:00
|
|
|
const GPUInfo::GPUDevice& other) = default;
|
|
|
|
|
|
|
|
GPUInfo::GPUDevice& GPUInfo::GPUDevice::operator=(
|
|
|
|
- GPUInfo::GPUDevice&& other) noexcept = default;
|
|
|
|
+ GPUInfo::GPUDevice&& other) = default;
|
|
|
|
|
|
|
|
GPUInfo::GPUInfo()
|
|
|
|
: optimus(false),
|
2020-03-11 14:50:16 +00:00
|
|
|
diff -up chromium-80.0.3987.132/third_party/openscreen/src/osp/public/service_info.h.el7-noexcept chromium-80.0.3987.132/third_party/openscreen/src/osp/public/service_info.h
|
|
|
|
--- chromium-80.0.3987.132/third_party/openscreen/src/osp/public/service_info.h.el7-noexcept 2020-03-03 13:55:28.000000000 -0500
|
|
|
|
+++ chromium-80.0.3987.132/third_party/openscreen/src/osp/public/service_info.h 2020-03-11 10:47:13.690155259 -0400
|
|
|
|
@@ -22,7 +22,7 @@ struct ServiceInfo {
|
2019-11-01 12:34:49 +00:00
|
|
|
ServiceInfo(ServiceInfo&&) MAYBE_NOEXCEPT = default;
|
|
|
|
ServiceInfo(const ServiceInfo&) MAYBE_NOEXCEPT = default;
|
|
|
|
|
|
|
|
- ServiceInfo& operator=(ServiceInfo&&) MAYBE_NOEXCEPT = default;
|
|
|
|
+ ServiceInfo& operator=(ServiceInfo&&) = default;
|
|
|
|
ServiceInfo& operator=(const ServiceInfo&) MAYBE_NOEXCEPT = default;
|
|
|
|
|
|
|
|
bool operator==(const ServiceInfo& other) const;
|