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

Side by Side Diff: components/autofill/content/browser/autocheckout_manager.h

Issue 16879006: In components/autofill, move common/ to core/common/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to fix conflict Created 7 years, 6 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_CONTENT_BROWSER_AUTOCHECKOUT_MANAGER_H_ 5 #ifndef COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOCHECKOUT_MANAGER_H_
6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOCHECKOUT_MANAGER_H_ 6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOCHECKOUT_MANAGER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/callback_forward.h" 10 #include "base/callback_forward.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/memory/weak_ptr.h" 12 #include "base/memory/weak_ptr.h"
13 #include "base/strings/string16.h" 13 #include "base/strings/string16.h"
14 #include "base/threading/thread_checker.h" 14 #include "base/threading/thread_checker.h"
15 #include "components/autofill/common/autocheckout_status.h"
16 #include "components/autofill/content/browser/autocheckout_page_meta_data.h" 15 #include "components/autofill/content/browser/autocheckout_page_meta_data.h"
16 #include "components/autofill/core/common/autocheckout_status.h"
17 17
18 class GURL; 18 class GURL;
19 19
20 namespace content { 20 namespace content {
21 struct SSLStatus; 21 struct SSLStatus;
22 } 22 }
23 23
24 namespace gfx { 24 namespace gfx {
25 class RectF; 25 class RectF;
26 } 26 }
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 base::WeakPtrFactory<AutocheckoutManager> weak_ptr_factory_; 151 base::WeakPtrFactory<AutocheckoutManager> weak_ptr_factory_;
152 152
153 base::ThreadChecker thread_checker_; 153 base::ThreadChecker thread_checker_;
154 154
155 DISALLOW_COPY_AND_ASSIGN(AutocheckoutManager); 155 DISALLOW_COPY_AND_ASSIGN(AutocheckoutManager);
156 }; 156 };
157 157
158 } // namespace autofill 158 } // namespace autofill
159 159
160 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOCHECKOUT_MANAGER_H_ 160 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOCHECKOUT_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698