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

Side by Side Diff: chrome/browser/sync/test/integration/sync_arc_package_helper.cc

Issue 2389063002: [Sync] Fixing easy lint violations. (Closed)
Patch Set: Updated for Max's comments. Created 4 years, 2 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 #include "chrome/browser/sync/test/integration/sync_arc_package_helper.h" 5 #include "chrome/browser/sync/test/integration/sync_arc_package_helper.h"
6 6
7 #include <memory>
8 #include <string>
9 #include <vector> 7 #include <vector>
10 8
11 #include "base/command_line.h" 9 #include "base/command_line.h"
12 #include "base/run_loop.h" 10 #include "base/run_loop.h"
13 #include "base/strings/string_number_conversions.h" 11 #include "base/strings/string_number_conversions.h"
14 #include "chrome/browser/chromeos/arc/arc_auth_service.h" 12 #include "chrome/browser/chromeos/arc/arc_auth_service.h"
15 #include "chrome/browser/chromeos/login/users/fake_chrome_user_manager.h" 13 #include "chrome/browser/chromeos/login/users/fake_chrome_user_manager.h"
16 #include "chrome/browser/chromeos/login/users/scoped_user_manager_enabler.h" 14 #include "chrome/browser/chromeos/login/users/scoped_user_manager_enabler.h"
17 #include "chrome/browser/chromeos/profiles/profile_helper.h" 15 #include "chrome/browser/chromeos/profiles/profile_helper.h"
18 #include "chrome/browser/profiles/profile.h" 16 #include "chrome/browser/profiles/profile.h"
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 if (package1_info->last_backup_android_id != 244 if (package1_info->last_backup_android_id !=
247 package2_info->last_backup_android_id) 245 package2_info->last_backup_android_id)
248 return false; 246 return false;
249 if (package1_info->last_backup_time != package2_info->last_backup_time) 247 if (package1_info->last_backup_time != package2_info->last_backup_time)
250 return false; 248 return false;
251 } 249 }
252 return true; 250 return true;
253 } 251 }
254 252
255 } // namespace arc 253 } // namespace arc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698