Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
|
Ilya Sherman
2013/06/12 00:07:46
ultra nit: Please omit the "(c)"
blundell
2013/06/12 16:29:37
Done.
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "components/autofill/browser/test_autofill_driver.h" | |
| 6 | |
| 7 namespace autofill { | |
| 8 | |
| 9 TestAutofillDriver::TestAutofillDriver(content::WebContents* web_contents) | |
| 10 : content::WebContentsObserver(web_contents) { | |
| 11 } | |
|
Ilya Sherman
2013/06/12 00:07:46
nit: Please move the closing curly brace to the pr
blundell
2013/06/12 16:29:37
Done.
| |
| 12 | |
| 13 TestAutofillDriver::~TestAutofillDriver() {} | |
| 14 | |
| 15 content::WebContents* TestAutofillDriver::GetWebContents() { | |
| 16 return web_contents(); | |
| 17 } | |
| 18 | |
| 19 } // namespace autofill | |
| OLD | NEW |