OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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 <vector> | 5 #include <vector> |
6 | 6 |
7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
9 #include "base/scoped_temp_dir.h" | 9 #include "base/scoped_temp_dir.h" |
10 #include "base/values.h" | 10 #include "base/values.h" |
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
382 ExecuteTest(); | 382 ExecuteTest(); |
383 VerifyTest("http://www.youtube.com"); | 383 VerifyTest("http://www.youtube.com"); |
384 } | 384 } |
385 | 385 |
386 INSTANTIATE_TEST_CASE_P( | 386 INSTANTIATE_TEST_CASE_P( |
387 CloudPolicySubsystemPolicyReregisterTestInstance, | 387 CloudPolicySubsystemPolicyReregisterTestInstance, |
388 CloudPolicySubsystemPolicyReregisterTest, | 388 CloudPolicySubsystemPolicyReregisterTest, |
389 testing::Values(401, 403, 410)); | 389 testing::Values(401, 403, 410)); |
390 | 390 |
391 } // policy | 391 } // policy |
| 392 |
OLD | NEW |