blob: 99ef284dd88f5765f1376f98882fd466dfaabc4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
// Copyright (c) 2010 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.
#ifndef CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_GNOME_X_H_
#define CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_GNOME_X_H_
#pragma once
#include "base/basictypes.h"
#include "base/time.h"
#include "chrome/browser/password_manager/password_store_x.h"
namespace webkit_glue {
struct PasswordForm;
}
// NativeBackend implementation using GNOME Keyring.
class NativeBackendGnome : public PasswordStoreX::NativeBackend {
public:
NativeBackendGnome();
virtual ~NativeBackendGnome();
virtual bool Init();
// Implements NativeBackend interface.
virtual bool AddLogin(const webkit_glue::PasswordForm& form);
virtual bool UpdateLogin(const webkit_glue::PasswordForm& form);
virtual bool RemoveLogin(const webkit_glue::PasswordForm& form);
virtual bool RemoveLoginsCreatedBetween(const base::Time& delete_begin,
const base::Time& delete_end);
virtual bool GetLogins(const webkit_glue::PasswordForm& form,
PasswordFormList* forms);
virtual bool GetLoginsCreatedBetween(const base::Time& get_begin,
const base::Time& get_end,
PasswordFormList* forms);
virtual bool GetAutofillableLogins(PasswordFormList* forms);
virtual bool GetBlacklistLogins(PasswordFormList* forms);
private:
// Reads PasswordForms from the keyring with the given autofillability state.
bool GetLoginsList(PasswordFormList* forms, bool autofillable);
// Helper for GetLoginsCreatedBetween().
bool GetAllLogins(PasswordFormList* forms);
DISALLOW_COPY_AND_ASSIGN(NativeBackendGnome);
};
#endif // CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_GNOME_X_H_
|