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

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 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 data_list_labels_.end()); 337 data_list_labels_.end());
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.
Ilya Sherman 2012/08/14 19:27:12 nit: This comment is probably no longer needed.
csharp 2012/08/15 19:39:58 Done.
348 // none, so all platforms use the default.
349 348
350 #if !defined(OS_ANDROID) && !defined(TOOLKIT_GTK) 349 #if defined(OS_MACOSX)
351 350
352 AutofillExternalDelegate* AutofillExternalDelegate::Create( 351 AutofillExternalDelegate* AutofillExternalDelegate::Create(
353 TabContents*, AutofillManager*) { 352 TabContents*, AutofillManager*) {
354 return NULL; 353 return NULL;
355 } 354 }
356 355
357 #endif 356 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698