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

Side by Side Diff: components/autofill/renderer/password_autofill_manager.h

Issue 12434004: Move remaining Autofill code to //components/autofill. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix long lines Created 7 years, 9 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 #ifndef CHROME_RENDERER_AUTOFILL_PASSWORD_AUTOFILL_MANAGER_H_ 5 #ifndef COMPONENTS_AUTOFILL_RENDERER_PASSWORD_AUTOFILL_MANAGER_H_
6 #define CHROME_RENDERER_AUTOFILL_PASSWORD_AUTOFILL_MANAGER_H_ 6 #define COMPONENTS_AUTOFILL_RENDERER_PASSWORD_AUTOFILL_MANAGER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/memory/weak_ptr.h" 11 #include "base/memory/weak_ptr.h"
12 #include "chrome/renderer/page_click_listener.h"
13 #include "components/autofill/common/password_form_fill_data.h" 12 #include "components/autofill/common/password_form_fill_data.h"
13 #include "components/autofill/renderer/page_click_listener.h"
14 #include "content/public/renderer/render_view_observer.h" 14 #include "content/public/renderer/render_view_observer.h"
15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputElement.h" 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputElement.h"
16 16
17 namespace WebKit { 17 namespace WebKit {
18 class WebInputElement; 18 class WebInputElement;
19 class WebKeyboardEvent; 19 class WebKeyboardEvent;
20 class WebView; 20 class WebView;
21 } 21 }
22 22
23 namespace autofill { 23 namespace autofill {
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 // Pointer to the WebView. Used to access page scale factor. 121 // Pointer to the WebView. Used to access page scale factor.
122 WebKit::WebView* web_view_; 122 WebKit::WebView* web_view_;
123 123
124 base::WeakPtrFactory<PasswordAutofillManager> weak_ptr_factory_; 124 base::WeakPtrFactory<PasswordAutofillManager> weak_ptr_factory_;
125 125
126 DISALLOW_COPY_AND_ASSIGN(PasswordAutofillManager); 126 DISALLOW_COPY_AND_ASSIGN(PasswordAutofillManager);
127 }; 127 };
128 128
129 } // namespace autofill 129 } // namespace autofill
130 130
131 #endif // CHROME_RENDERER_AUTOFILL_PASSWORD_AUTOFILL_MANAGER_H_ 131 #endif // COMPONENTS_AUTOFILL_RENDERER_PASSWORD_AUTOFILL_MANAGER_H_
OLDNEW
« no previous file with comments | « components/autofill/renderer/page_click_tracker.cc ('k') | components/autofill/renderer/password_autofill_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698