11/*
2- * Copyright (C) 2022-present The WebF authors. All rights reserved.
3- */
2+ * Copyright (C) 2022-present The WebF authors. All rights reserved.
3+ */
44
55#ifndef WEBF_CORE_EVENTS_HASHCHANGE_EVENT_H_
66#define WEBF_CORE_EVENTS_HASHCHANGE_EVENT_H_
@@ -23,18 +23,20 @@ class HashchangeEvent : public Event {
2323 static HashchangeEvent* Create (ExecutingContext* context, const AtomicString& type, ExceptionState& exception_state);
2424
2525 static HashchangeEvent* Create (ExecutingContext* context,
26- const AtomicString& type,
27- const std::shared_ptr<HashchangeEventInit>& initializer,
28- ExceptionState& exception_state);
26+ const AtomicString& type,
27+ const std::shared_ptr<HashchangeEventInit>& initializer,
28+ ExceptionState& exception_state);
2929
3030 explicit HashchangeEvent (ExecutingContext* context, const AtomicString& type, ExceptionState& exception_state);
3131
3232 explicit HashchangeEvent (ExecutingContext* context,
33- const AtomicString& type,
34- const std::shared_ptr<HashchangeEventInit>& initializer,
35- ExceptionState& exception_state);
33+ const AtomicString& type,
34+ const std::shared_ptr<HashchangeEventInit>& initializer,
35+ ExceptionState& exception_state);
3636
37- explicit HashchangeEvent (ExecutingContext* context, const AtomicString& type, NativeHashchangeEvent* native_hash_change_event);
37+ explicit HashchangeEvent (ExecutingContext* context,
38+ const AtomicString& type,
39+ NativeHashchangeEvent* native_hash_change_event);
3840
3941 const AtomicString& newURL () const ;
4042 const AtomicString& oldURL () const ;
@@ -46,6 +48,6 @@ class HashchangeEvent : public Event {
4648 AtomicString old_url_;
4749};
4850
49- }
51+ } // namespace webf
5052
5153#endif // WEBF_CORE_EVENTS_HASHCHANGE_EVENT_H_
0 commit comments