| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_FIREFOX_IMPORTER_UTILS_H_ | 5 #ifndef CHROME_BROWSER_IMPORTER_FIREFOX_IMPORTER_UTILS_H_ |
| 6 #define CHROME_BROWSER_FIREFOX_IMPORTER_UTILS_H_ | 6 #define CHROME_BROWSER_IMPORTER_FIREFOX_IMPORTER_UTILS_H_ |
| 7 | 7 |
| 8 #include "base/values.h" | 8 #include "base/values.h" |
| 9 #include "webkit/glue/password_form.h" | 9 #include "webkit/glue/password_form.h" |
| 10 | 10 |
| 11 class GURL; | 11 class GURL; |
| 12 class TemplateURL; | 12 class TemplateURL; |
| 13 | 13 |
| 14 // Detects which version of Firefox is installed. Returns its | 14 // Detects which version of Firefox is installed. Returns its |
| 15 // major version, and drops the minor version. Returns 0 if | 15 // major version, and drops the minor version. Returns 0 if |
| 16 // failed. | 16 // failed. |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 // NSS3 module handles. | 200 // NSS3 module handles. |
| 201 HMODULE nss3_dll_; | 201 HMODULE nss3_dll_; |
| 202 HMODULE softokn3_dll_; | 202 HMODULE softokn3_dll_; |
| 203 | 203 |
| 204 // True if NSS_Init() has been called | 204 // True if NSS_Init() has been called |
| 205 bool is_nss_initialized_; | 205 bool is_nss_initialized_; |
| 206 | 206 |
| 207 DISALLOW_EVIL_CONSTRUCTORS(NSSDecryptor); | 207 DISALLOW_EVIL_CONSTRUCTORS(NSSDecryptor); |
| 208 }; | 208 }; |
| 209 | 209 |
| 210 #endif // CHROME_BROWSER_FIREFOX_IMPORTER_UTILS_H__ | 210 #endif // CHROME_BROWSER_IMPORTER_FIREFOX_IMPORTER_UTILS_H_ |
| 211 | 211 |
| OLD | NEW |