mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 23:02:20 +00:00
Bug 1402519 - Remove MOZ_CRASHREPORTER directives from storage; r=mak
MozReview-Commit-ID: HYpSWoJaEAm --HG-- extra : rebase_source : 63f8a24c71a93ea14eb9c4f5411fb7f2ca12d661
This commit is contained in:
parent
80fbb39861
commit
4a5642e26f
@ -12,6 +12,7 @@
|
||||
#include "nsAutoPtr.h"
|
||||
#include "nsCollationCID.h"
|
||||
#include "nsEmbedCID.h"
|
||||
#include "nsExceptionHandler.h"
|
||||
#include "nsThreadUtils.h"
|
||||
#include "mozStoragePrivateHelpers.h"
|
||||
#include "nsIXPConnect.h"
|
||||
@ -26,10 +27,6 @@
|
||||
#include "sqlite3.h"
|
||||
#include "mozilla/AutoSQLiteLifetime.h"
|
||||
|
||||
#ifdef MOZ_CRASHREPORTER
|
||||
#include "nsExceptionHandler.h"
|
||||
#endif
|
||||
|
||||
#ifdef XP_WIN
|
||||
// "windows.h" was included and it can #define lots of things we care about...
|
||||
#undef CompareString
|
||||
@ -801,13 +798,11 @@ Service::Observe(nsISupports *, const char *aTopic, const char16_t *)
|
||||
getConnections(connections);
|
||||
for (uint32_t i = 0, n = connections.Length(); i < n; i++) {
|
||||
if (!connections[i]->isClosed()) {
|
||||
#ifdef MOZ_CRASHREPORTER
|
||||
// getFilename is only the leaf name for the database file,
|
||||
// so it shouldn't contain privacy-sensitive information.
|
||||
CrashReporter::AnnotateCrashReport(
|
||||
NS_LITERAL_CSTRING("StorageConnectionNotClosed"),
|
||||
connections[i]->getFilename());
|
||||
#endif
|
||||
#ifdef DEBUG
|
||||
printf_stderr("Storage connection not closed: %s",
|
||||
connections[i]->getFilename().get());
|
||||
|
Loading…
Reference in New Issue
Block a user