blob: f5f6a74f4bc93f5b701e0e925e6152b79dc83af5 (
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 FormData& form,
const FormFieldData& field,
const gfx::Rect& bounds) {}
void TestAutofillExternalDelegate::HideAutofillPopupInternal() {}
void TestAutofillExternalDelegate::SetBounds(const gfx::Rect& bounds) {}
|