tor-browser

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

nsKeychainMigrationUtils.h (598B)


      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 nsKeychainMigrationUtils_h__
      6 #define nsKeychainMigrationUtils_h__
      7 
      8 #include <CoreFoundation/CoreFoundation.h>
      9 
     10 #include "nsIKeychainMigrationUtils.h"
     11 
     12 class nsKeychainMigrationUtils : public nsIKeychainMigrationUtils {
     13 public:
     14  NS_DECL_ISUPPORTS
     15  NS_DECL_NSIKEYCHAINMIGRATIONUTILS
     16 
     17  nsKeychainMigrationUtils() {};
     18 
     19 protected:
     20  virtual ~nsKeychainMigrationUtils() {};
     21 };
     22 
     23 #endif