summaryrefslogtreecommitdiffstats
path: root/chrome/browser/autofill/test_autofill_external_delegate.cc
blob: 681547782edc92c7da2f94f1c485e0cefd2c12f9 (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
// Copyright (c) 2012 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.

#include "chrome/browser/autofill/test_autofill_external_delegate.h"

TestAutofillExternalDelegate::TestAutofillExternalDelegate(
    TabContents* tab_contents, AutofillManager* autofill_manager) :
    AutofillExternalDelegate(tab_contents, autofill_manager) {}

TestAutofillExternalDelegate::~TestAutofillExternalDelegate() {}

void TestAutofillExternalDelegate::ApplyAutofillSuggestions(
    const std::vector<string16>& autofill_values,
    const std::vector<string16>& autofill_labels,
    const std::vector<string16>& autofill_icons,
    const std::vector<int>& autofill_unique_ids) {}

void TestAutofillExternalDelegate::OnQueryPlatformSpecific(
    int query_id,
    const webkit::forms::FormData& form,
    const webkit::forms::FormField& field,
    const gfx::Rect& bounds) {}

void TestAutofillExternalDelegate::HideAutofillPopupInternal() {}

void TestAutofillExternalDelegate::SetBounds(const gfx::Rect& bounds) {}