Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(299)

Unified Diff: chrome/browser/importer/firefox_importer_utils.h

Issue 119267: Linux: Import passwords from Firefox. (Closed)
Patch Set: use base/native_library Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/importer/firefox_importer_utils.h
diff --git a/chrome/browser/importer/firefox_importer_utils.h b/chrome/browser/importer/firefox_importer_utils.h
index 72129191334fe33f468b09074d2df99b8521c690..14c0c7a02158bb57419a95a3f80ce3aa60402ef9 100644
--- a/chrome/browser/importer/firefox_importer_utils.h
+++ b/chrome/browser/importer/firefox_importer_utils.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -7,6 +7,7 @@
#include "base/basictypes.h"
#include "base/file_util.h"
+#include "base/native_library.h"
#include "base/values.h"
#include "build/build_config.h"
#include "webkit/glue/password_form.h"
@@ -210,11 +211,9 @@ class NSSDecryptor {
static const wchar_t kPLDS4Library[];
static const wchar_t kNSPR4Library[];
-#if defined(OS_WIN)
// NSS3 module handles.
- HMODULE nss3_dll_;
- HMODULE softokn3_dll_;
-#endif
+ base::NativeLibrary nss3_dll_;
+ base::NativeLibrary softokn3_dll_;
// True if NSS_Init() has been called
bool is_nss_initialized_;
« no previous file with comments | « no previous file | chrome/browser/importer/firefox_importer_utils.cc » ('j') | chrome/browser/importer/firefox_importer_utils.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698