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

Side by Side Diff: chrome/browser/autofill/autofill_external_delegate.cc

Issue 10825324: Start of New Autofill UI for Windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/utf_string_conversions.h" 5 #include "base/utf_string_conversions.h"
6 #include "chrome/browser/autofill/autocomplete_history_manager.h" 6 #include "chrome/browser/autofill/autocomplete_history_manager.h"
7 #include "chrome/browser/autofill/autofill_external_delegate.h" 7 #include "chrome/browser/autofill/autofill_external_delegate.h"
8 #include "chrome/browser/autofill/autofill_manager.h" 8 #include "chrome/browser/autofill/autofill_manager.h"
9 #include "chrome/common/autofill_messages.h" 9 #include "chrome/common/autofill_messages.h"
10 #include "chrome/common/chrome_constants.h" 10 #include "chrome/common/chrome_constants.h"
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 autofill_icons->insert(autofill_icons->begin(), 338 autofill_icons->insert(autofill_icons->begin(),
339 data_list_icons_.begin(), 339 data_list_icons_.begin(),
340 data_list_icons_.end()); 340 data_list_icons_.end());
341 autofill_unique_ids->insert(autofill_unique_ids->begin(), 341 autofill_unique_ids->insert(autofill_unique_ids->begin(),
342 data_list_unique_ids_.begin(), 342 data_list_unique_ids_.begin(),
343 data_list_unique_ids_.end()); 343 data_list_unique_ids_.end());
344 } 344 }
345 345
346 // Add a "!defined(OS_YOUROS) for each platform that implements this 346 // Add a "!defined(OS_YOUROS) for each platform that implements this
347 // in an autofill_external_delegate_YOUROS.cc. Currently there are 347 // in an autofill_external_delegate_YOUROS.cc. Currently there are
348 // none, so all platforms use the default. 348 // none, so all platforms use the default.
Ilya Sherman 2012/08/14 05:12:09 nit: Please remove the "Currently there are none s
csharp 2012/08/14 19:06:13 Done.
349 349
350 #if !defined(OS_ANDROID) && !defined(TOOLKIT_GTK) 350 #if !defined(OS_ANDROID) && !defined(TOOLKIT_GTK) && !defined(TOOLKIT_VIEWS)
351 351
352 AutofillExternalDelegate* AutofillExternalDelegate::Create( 352 AutofillExternalDelegate* AutofillExternalDelegate::Create(
353 TabContents*, AutofillManager*) { 353 TabContents*, AutofillManager*) {
354 return NULL; 354 return NULL;
355 } 355 }
356 356
357 #endif 357 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698