| 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 CHROME_BROWSER_UI_SYNC_ONE_CLICK_SIGNIN_HELPER_H_ | 5 #ifndef CHROME_BROWSER_UI_SYNC_ONE_CLICK_SIGNIN_HELPER_H_ |
| 6 #define CHROME_BROWSER_UI_SYNC_ONE_CLICK_SIGNIN_HELPER_H_ | 6 #define CHROME_BROWSER_UI_SYNC_ONE_CLICK_SIGNIN_HELPER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
| 11 #include "chrome/browser/sync/profile_sync_service_observer.h" | 11 #include "chrome/browser/sync/profile_sync_service_observer.h" |
| 12 #include "chrome/browser/ui/webui/sync_promo/sync_promo_ui.h" | 12 #include "chrome/browser/ui/sync/sync_promo_ui.h" |
| 13 #include "content/public/browser/navigation_controller.h" | 13 #include "content/public/browser/navigation_controller.h" |
| 14 #include "content/public/browser/web_contents_observer.h" | 14 #include "content/public/browser/web_contents_observer.h" |
| 15 #include "content/public/browser/web_contents_user_data.h" | 15 #include "content/public/browser/web_contents_user_data.h" |
| 16 #include "google_apis/gaia/google_service_auth_error.h" | 16 #include "google_apis/gaia/google_service_auth_error.h" |
| 17 | 17 |
| 18 class Browser; | 18 class Browser; |
| 19 class GURL; | 19 class GURL; |
| 20 class ProfileIOData; | 20 class ProfileIOData; |
| 21 | 21 |
| 22 namespace content { | 22 namespace content { |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 bool untrusted_confirmation_required_; | 248 bool untrusted_confirmation_required_; |
| 249 | 249 |
| 250 // Allows unittests to avoid accessing the ResourceContext for clearing a | 250 // Allows unittests to avoid accessing the ResourceContext for clearing a |
| 251 // pending e-mail. | 251 // pending e-mail. |
| 252 bool do_not_clear_pending_email_; | 252 bool do_not_clear_pending_email_; |
| 253 | 253 |
| 254 DISALLOW_COPY_AND_ASSIGN(OneClickSigninHelper); | 254 DISALLOW_COPY_AND_ASSIGN(OneClickSigninHelper); |
| 255 }; | 255 }; |
| 256 | 256 |
| 257 #endif // CHROME_BROWSER_UI_SYNC_ONE_CLICK_SIGNIN_HELPER_H_ | 257 #endif // CHROME_BROWSER_UI_SYNC_ONE_CLICK_SIGNIN_HELPER_H_ |
| OLD | NEW |