| OLD | NEW |
| 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 CHROME_BROWSER_SYNC_TEST_INTEGRATION_SYNC_APP_LIST_HELPER_H_ | 5 #ifndef CHROME_BROWSER_SYNC_TEST_INTEGRATION_SYNC_APP_LIST_HELPER_H_ |
| 6 #define CHROME_BROWSER_SYNC_TEST_INTEGRATION_SYNC_APP_LIST_HELPER_H_ | 6 #define CHROME_BROWSER_SYNC_TEST_INTEGRATION_SYNC_APP_LIST_HELPER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/memory/singleton.h" | 13 #include "base/memory/singleton.h" |
| 14 #include "sync/api/string_ordinal.h" | 14 #include "components/sync/api/string_ordinal.h" |
| 15 | 15 |
| 16 class Profile; | 16 class Profile; |
| 17 class SyncTest; | 17 class SyncTest; |
| 18 | 18 |
| 19 namespace app_list { | 19 namespace app_list { |
| 20 class AppListItem; | 20 class AppListItem; |
| 21 } | 21 } |
| 22 | 22 |
| 23 class SyncAppListHelper { | 23 class SyncAppListHelper { |
| 24 public: | 24 public: |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 app_list::AppListItem* item, | 64 app_list::AppListItem* item, |
| 65 const std::string& label); | 65 const std::string& label); |
| 66 | 66 |
| 67 SyncTest* test_; | 67 SyncTest* test_; |
| 68 bool setup_completed_; | 68 bool setup_completed_; |
| 69 | 69 |
| 70 DISALLOW_COPY_AND_ASSIGN(SyncAppListHelper); | 70 DISALLOW_COPY_AND_ASSIGN(SyncAppListHelper); |
| 71 }; | 71 }; |
| 72 | 72 |
| 73 #endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_SYNC_APP_LIST_HELPER_H_ | 73 #endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_SYNC_APP_LIST_HELPER_H_ |
| OLD | NEW |