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

Unified Diff: chrome/browser/autofill/autofill_external_delegate_test.cc

Issue 9235072: Adding Mouse Support for new GTK Autofill (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Responding to comments Created 8 years, 10 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/autofill/autofill_external_delegate_test.cc
diff --git a/chrome/browser/autofill/autofill_external_delegate_test.cc b/chrome/browser/autofill/autofill_external_delegate_test.cc
new file mode 100644
index 0000000000000000000000000000000000000000..597999875ebd42f7ab8123accd2f40ea114c4151
--- /dev/null
+++ b/chrome/browser/autofill/autofill_external_delegate_test.cc
@@ -0,0 +1,26 @@
+// 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/autofill_external_delegate_test.h"
+
+AutofillExternalDelegateTest::AutofillExternalDelegateTest(
+ TabContentsWrapper* wrapper, AutofillManager* autofill_manager) :
+ AutofillExternalDelegate(wrapper, autofill_manager) {}
+
+AutofillExternalDelegateTest::~AutofillExternalDelegateTest() {}
+
+void AutofillExternalDelegateTest::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,
+ int separator_index) {}
+
+void AutofillExternalDelegateTest::OnQueryPlatformSpecific(
+ int query_id,
+ const webkit::forms::FormData& form,
+ const webkit::forms::FormField& field,
+ const gfx::Rect& bounds) {}
+
+void AutofillExternalDelegateTest::HideAutofillPopupInternal() {}

Powered by Google App Engine
This is Rietveld 408576698