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 "chrome/common/mac/cfbundle_blocker.h" | 5 #include "chrome/common/mac/cfbundle_blocker.h" |
6 | 6 |
7 #import <Foundation/Foundation.h> | 7 #import <Foundation/Foundation.h> |
| 8 #include <stddef.h> |
8 | 9 |
9 #include "base/basictypes.h" | 10 #include "base/macros.h" |
10 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
11 | 12 |
12 namespace chrome { | 13 namespace chrome { |
13 namespace common { | 14 namespace common { |
14 namespace mac { | 15 namespace mac { |
15 namespace { | 16 namespace { |
16 | 17 |
17 struct IsBundleAllowedTestcase { | 18 struct IsBundleAllowedTestcase { |
18 NSString* bundle_id; | 19 NSString* bundle_id; |
19 NSString* version; | 20 NSString* version; |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 << "index " << index | 85 << "index " << index |
85 << ", bundle_id " << [bundle_id UTF8String] | 86 << ", bundle_id " << [bundle_id UTF8String] |
86 << ", version " << [version_print UTF8String]; | 87 << ", version " << [version_print UTF8String]; |
87 } | 88 } |
88 } | 89 } |
89 | 90 |
90 } // namespace | 91 } // namespace |
91 } // namespace mac | 92 } // namespace mac |
92 } // namespace common | 93 } // namespace common |
93 } // namespace chrome | 94 } // namespace chrome |
OLD | NEW |