forked from pool/nodejs-electron
- New upstream release 21.2.1 * Fixed spurious promise rejection in webContents.loadURL when navigating to a hash. * Updated Chromium to 106.0.5249.165. - Add electron-version-from-env.patch to fix build error - Add upstreamable patches fixing various erroneous C++ constructs * ipcz-safe_math-Wuninitialized.patch * passwords_counter-Wsubobject-linkage.patch * static_constructors-Wstrict-aliasing.patch * vector_math_impl-Wstrict-aliasing.patch * webgl_image_conversion-Wstrict-aliasing.patch * xr_cube_map-Wstrict-aliasing.patch OBS-URL: https://build.opensuse.org/request/show/1032854 OBS-URL: https://build.opensuse.org/package/show/devel:languages:nodejs/nodejs-electron?expand=0&rev=45
33 lines
1.1 KiB
Diff
33 lines
1.1 KiB
Diff
--- src/components/browsing_data/core/counters/passwords_counter.cc.old 2022-10-20 19:00:23.009865700 +0200
|
|
+++ src/components/browsing_data/core/counters/passwords_counter.cc 2022-10-29 22:29:38.660589600 +0200
|
|
@@ -34,6 +34,8 @@
|
|
}
|
|
}
|
|
|
|
+} // namespace
|
|
+
|
|
// PasswordStoreFetcher ----------------------------------
|
|
|
|
// Fetches passswords and observes a PasswordStoreInterface.
|
|
@@ -168,8 +170,6 @@
|
|
weak_ptr_factory_.InvalidateWeakPtrs();
|
|
}
|
|
|
|
-} // namespace
|
|
-
|
|
// PasswordsCounter::PasswordsResult ----------------------------------
|
|
PasswordsCounter::PasswordsResult::PasswordsResult(
|
|
const BrowsingDataCounter* source,
|
|
--- src/components/browsing_data/core/counters/passwords_counter.h.old 2022-10-20 19:00:23.009865700 +0200
|
|
+++ src/components/browsing_data/core/counters/passwords_counter.h 2022-10-29 22:28:42.288402800 +0200
|
|
@@ -18,9 +18,7 @@
|
|
}
|
|
|
|
namespace browsing_data {
|
|
-namespace {
|
|
class PasswordStoreFetcher;
|
|
-}
|
|
class PasswordsCounter : public browsing_data::BrowsingDataCounter {
|
|
public:
|
|
// A subclass of SyncResult that stores the result value, a boolean
|