tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

nsEdgeMigrationUtils.h (564B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
      3 * You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 
      5 #ifndef nsedgemigrationutils__h__
      6 #define nsedgemigrationutils__h__
      7 
      8 #include "nsISupportsImpl.h"
      9 #include "nsIEdgeMigrationUtils.h"
     10 
     11 namespace mozilla {
     12 
     13 class nsEdgeMigrationUtils final : public nsIEdgeMigrationUtils {
     14  NS_DECL_ISUPPORTS
     15  NS_DECL_NSIEDGEMIGRATIONUTILS
     16 
     17 private:
     18  ~nsEdgeMigrationUtils() = default;
     19 };
     20 
     21 }  // namespace mozilla
     22 
     23 #endif