OLD | NEW |
| (Empty) |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_BROWSER_IMPORTER_TOOLBAR_IMPORTER_UTILS_H_ | |
6 #define CHROME_BROWSER_IMPORTER_TOOLBAR_IMPORTER_UTILS_H_ | |
7 | |
8 #include "base/callback_forward.h" | |
9 | |
10 class Profile; | |
11 | |
12 namespace toolbar_importer_utils { | |
13 | |
14 // Currently the only configuration information we need is to check whether or | |
15 // not the user currently has their GAIA cookie. This is done by the function | |
16 // exposed through the ToolbarImportUtils namespace. | |
17 void IsGoogleGAIACookieInstalled(const base::Callback<void(bool)>& callback, | |
18 Profile* profile); | |
19 | |
20 } // namespace toolbar_importer_utils | |
21 | |
22 #endif // CHROME_BROWSER_IMPORTER_TOOLBAR_IMPORTER_UTILS_H_ | |
OLD | NEW |