| OLD | NEW | 
|    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 #ifndef COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_EXTERNAL_DELEGATE_H_ |    5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_EXTERNAL_DELEGATE_H_ | 
|    6 #define COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_EXTERNAL_DELEGATE_H_ |    6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_EXTERNAL_DELEGATE_H_ | 
|    7  |    7  | 
|    8 #include <vector> |    8 #include <vector> | 
|    9  |    9  | 
|   10 #include "base/compiler_specific.h" |   10 #include "base/compiler_specific.h" | 
|   11 #include "base/memory/weak_ptr.h" |   11 #include "base/memory/weak_ptr.h" | 
|   12 #include "base/strings/string16.h" |   12 #include "base/strings/string16.h" | 
|   13 #include "components/autofill/browser/autofill_popup_delegate.h" |   13 #include "components/autofill/core/browser/autofill_popup_delegate.h" | 
|   14 #include "components/autofill/browser/password_autofill_manager.h" |   14 #include "components/autofill/core/browser/password_autofill_manager.h" | 
|   15 #include "components/autofill/core/common/form_data.h" |   15 #include "components/autofill/core/common/form_data.h" | 
|   16 #include "components/autofill/core/common/form_field_data.h" |   16 #include "components/autofill/core/common/form_field_data.h" | 
|   17 #include "components/autofill/core/common/password_form_fill_data.h" |   17 #include "components/autofill/core/common/password_form_fill_data.h" | 
|   18 #include "content/public/browser/notification_observer.h" |   18 #include "content/public/browser/notification_observer.h" | 
|   19 #include "content/public/browser/notification_registrar.h" |   19 #include "content/public/browser/notification_registrar.h" | 
|   20 #include "ui/gfx/rect.h" |   20 #include "ui/gfx/rect.h" | 
|   21  |   21  | 
|   22 namespace gfx { |   22 namespace gfx { | 
|   23 class Rect; |   23 class Rect; | 
|   24 } |   24 } | 
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  183   std::vector<base::string16> data_list_icons_; |  183   std::vector<base::string16> data_list_icons_; | 
|  184   std::vector<int> data_list_unique_ids_; |  184   std::vector<int> data_list_unique_ids_; | 
|  185  |  185  | 
|  186   base::WeakPtrFactory<AutofillExternalDelegate> weak_ptr_factory_; |  186   base::WeakPtrFactory<AutofillExternalDelegate> weak_ptr_factory_; | 
|  187  |  187  | 
|  188   DISALLOW_COPY_AND_ASSIGN(AutofillExternalDelegate); |  188   DISALLOW_COPY_AND_ASSIGN(AutofillExternalDelegate); | 
|  189 }; |  189 }; | 
|  190  |  190  | 
|  191 }  // namespace autofill |  191 }  // namespace autofill | 
|  192  |  192  | 
|  193 #endif  // COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_EXTERNAL_DELEGATE_H_ |  193 #endif  // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_EXTERNAL_DELEGATE_H_ | 
| OLD | NEW |