Bug 1768189 - Part 30: Apply modernize-concat-nested-namespaces to dom/serviceworkers/ServiceWorkerUnregisterCallback.cpp ... r=andi

Depends on D145763

Differential Revision: https://phabricator.services.mozilla.com/D145764
This commit is contained in:
Kagami Sascha Rosylight 2022-05-09 20:41:14 +00:00
Родитель 0e60dc53fb
Коммит e9a92f2d27
25 изменённых файлов: 50 добавлений и 100 удалений

Просмотреть файл

@ -6,8 +6,7 @@
#include "ServiceWorkerUnregisterCallback.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
NS_IMPL_ISUPPORTS(UnregisterCallback, nsIServiceWorkerUnregisterCallback)
@ -33,5 +32,4 @@ UnregisterCallback::UnregisterFailed() {
RefPtr<GenericPromise> UnregisterCallback::Promise() const { return mPromise; }
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom

Просмотреть файл

@ -11,8 +11,7 @@
#include "mozilla/RefPtr.h"
#include "nsIServiceWorkerManager.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class UnregisterCallback final : public nsIServiceWorkerUnregisterCallback {
public:
@ -37,7 +36,6 @@ class UnregisterCallback final : public nsIServiceWorkerUnregisterCallback {
RefPtr<GenericPromise::Private> mPromise;
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif // mozilla_dom_ServiceWorkerUnregisterCallback_h

Просмотреть файл

@ -12,8 +12,7 @@
#include "nsThreadUtils.h"
#include "ServiceWorkerManager.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class ServiceWorkerUnregisterJob::PushUnsubscribeCallback final
: public nsIUnsubscribeResultCallback {
@ -135,5 +134,4 @@ void ServiceWorkerUnregisterJob::Unregister() {
Finish(NS_OK);
}
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom

Просмотреть файл

@ -9,8 +9,7 @@
#include "ServiceWorkerJob.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class ServiceWorkerUnregisterJob final : public ServiceWorkerJob {
public:
@ -32,7 +31,6 @@ class ServiceWorkerUnregisterJob final : public ServiceWorkerJob {
bool mSendToParent;
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif // mozilla_dom_serviceworkerunregisterjob_h

Просмотреть файл

@ -17,8 +17,7 @@
#include "ServiceWorkerScriptCache.h"
#include "mozilla/dom/WorkerCommon.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
using serviceWorkerScriptCache::OnFailure;
@ -539,5 +538,4 @@ void ServiceWorkerUpdateJob::ContinueAfterInstallEvent(
mRegistration->TryToActivateAsync();
}
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom

Просмотреть файл

@ -12,8 +12,7 @@
#include "nsIRequest.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
namespace serviceWorkerScriptCache {
enum class OnFailure : uint8_t;
@ -93,7 +92,6 @@ class ServiceWorkerUpdateJob : public ServiceWorkerJob {
serviceWorkerScriptCache::OnFailure mOnFailure;
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif // mozilla_dom_serviceworkerupdatejob_h

Просмотреть файл

@ -16,8 +16,7 @@
#include "nsIURL.h"
#include "nsPrintfCString.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
bool ServiceWorkerRegistrationDataIsValid(
const ServiceWorkerRegistrationData& aData) {
@ -144,5 +143,4 @@ void ServiceWorkerScopeAndScriptAreValid(const ClientInfo& aClientInfo,
}
}
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom

Просмотреть файл

@ -19,8 +19,7 @@
class nsISDBCallback;
class nsIVariant;
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class SDBConnection;
@ -58,7 +57,6 @@ class SDBRequest final : public nsISDBRequest {
NS_DECL_CYCLE_COLLECTION_CLASS(SDBRequest)
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif // mozilla_dom_simpledb_SDBRequest_h

Просмотреть файл

@ -11,8 +11,7 @@
#include "nsISupports.h"
#include "nsString.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class SDBResult : public nsISDBResult {
nsCString mData;
@ -27,7 +26,6 @@ class SDBResult : public nsISDBResult {
NS_DECL_NSISDBRESULT
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif // mozilla_dom_simpledb_SDBResults_h

Просмотреть файл

@ -9,12 +9,10 @@
#include "mozilla/dom/quota/QuotaCommon.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
extern const char* kPrefSimpleDBEnabled;
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif // mozilla_dom_simpledb_SimpledbCommon_h

Просмотреть файл

@ -11,8 +11,7 @@
#include "nsPresContext.h"
#include "nsGlobalWindow.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
TimeEvent::TimeEvent(EventTarget* aOwner, nsPresContext* aPresContext,
InternalSMILTimeEvent* aEvent)
@ -46,8 +45,7 @@ void TimeEvent::InitTimeEvent(const nsAString& aType,
mView = aView ? aView->GetOuterWindow() : nullptr;
}
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
using namespace mozilla;
using namespace mozilla::dom;

Просмотреть файл

@ -15,8 +15,7 @@
class nsGlobalWindowInner;
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class TimeEvent final : public Event {
public:
@ -53,8 +52,7 @@ class TimeEvent final : public Event {
int32_t mDetail;
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
already_AddRefed<mozilla::dom::TimeEvent> NS_NewDOMTimeEvent(
mozilla::dom::EventTarget* aOwner, nsPresContext* aPresContext,

Просмотреть файл

@ -10,8 +10,7 @@
#include "Storage.h"
#include "nsWeakReference.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class LocalStorageCache;
class LocalStorageManager;
@ -79,7 +78,6 @@ class LocalStorage final : public Storage, public nsSupportsWeakReference {
const nsAString& aNewValue);
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif // mozilla_dom_LocalStorage_h

Просмотреть файл

@ -18,8 +18,7 @@
#include "nsProxyRelease.h"
#include "nsThreadUtils.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
#define DOM_STORAGE_CACHE_KEEP_ALIVE_TIME_MS 20000
@ -613,5 +612,4 @@ bool StorageUsage::CheckAndSetETLD1UsageDelta(
return true;
}
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom

Просмотреть файл

@ -16,8 +16,7 @@
#include "mozilla/Telemetry.h"
#include "mozilla/Atomics.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class LocalStorage;
class LocalStorageCacheChild;
@ -302,7 +301,6 @@ class StorageUsage : public StorageUsageBridge {
int64_t mUsage[LocalStorageCache::kDataSetCount];
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif // mozilla_dom_LocalStorageCache_h

Просмотреть файл

@ -25,8 +25,7 @@
#include "mozilla/StaticPrefs_dom.h"
#include "mozilla/dom/LocalStorageCommon.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
using namespace StorageUtils;
@ -452,5 +451,4 @@ LocalStorageManager* LocalStorageManager::Ensure() {
return sSelf;
}
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom

Просмотреть файл

@ -10,8 +10,7 @@
#include "mozilla/dom/StorageBinding.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
NS_IMPL_CYCLE_COLLECTION_INHERITED(PartitionedLocalStorage, Storage);
@ -131,5 +130,4 @@ bool PartitionedLocalStorage::IsForkOf(const Storage* aOther) const {
return mCache == static_cast<const PartitionedLocalStorage*>(aOther)->mCache;
}
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom

Просмотреть файл

@ -11,8 +11,7 @@
class nsIPrincipal;
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class SessionStorageCache;
@ -60,7 +59,6 @@ class PartitionedLocalStorage final : public Storage {
RefPtr<SessionStorageCache> mCache;
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif // mozilla_dom_PartitionedLocalStorage_h

Просмотреть файл

@ -16,8 +16,7 @@
#include "nsPIDOMWindow.h"
#include "nsThreadUtils.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
NS_IMPL_CYCLE_COLLECTION_INHERITED(SessionStorage, Storage, mManager);
@ -256,5 +255,4 @@ nsresult SessionStorage::EnsureCacheLoadedOrCloned() const {
return mManager->LoadData(*StoragePrincipal(), *mCache);
}
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom

Просмотреть файл

@ -11,8 +11,7 @@
class nsIPrincipal;
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class SessionStorageCache;
class SessionStorageManager;
@ -82,7 +81,6 @@ class SessionStorage final : public Storage {
bool mHasPendingStableStateCallback;
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif // mozilla_dom_SessionStorage_h

Просмотреть файл

@ -13,8 +13,7 @@
#include "mozilla/dom/PBackgroundSessionStorageCache.h"
#include "nsDOMString.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
void SSWriteOptimizer::Enumerate(nsTArray<SSWriteInfo>& aWriteInfos) {
AssertIsOnOwningThread();
@ -290,5 +289,4 @@ bool SessionStorageCache::DataSet::ProcessUsageDelta(int64_t aDelta) {
return true;
}
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom

Просмотреть файл

@ -29,8 +29,7 @@
#include "nsTHashMap.h"
#include "nsThreadUtils.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
using namespace StorageUtils;
@ -985,5 +984,4 @@ void BackgroundSessionStorageManager::RemoveParticipatingActor(
mParticipatingActors.RemoveElement(aActor);
}
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom

Просмотреть файл

@ -8,8 +8,7 @@
#include "StorageIPC.h"
#include "mozilla/dom/LocalStorageCommon.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
namespace {
@ -53,5 +52,4 @@ void SessionStorageObserver::SetActor(SessionStorageObserverChild* aActor) {
mActor = aActor;
}
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom

Просмотреть файл

@ -9,8 +9,7 @@
#include "nsISupportsImpl.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class SessionStorageObserverChild;
@ -59,7 +58,6 @@ class SessionStorageObserver final {
~SessionStorageObserver();
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif // mozilla_dom_SessionStorageObserver_h

Просмотреть файл

@ -18,8 +18,7 @@
#include "nsIObserverService.h"
#include "nsPIDOMWindow.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
static const char kStorageEnabled[] = "dom.storage.enabled";
@ -155,5 +154,4 @@ void Storage::NotifyChange(Storage* aStorage, nsIPrincipal* aPrincipal,
}
}
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom