| OLD | NEW | 
|   1 // Copyright 2015 The Chromium Authors. All rights reserved. |   1 // Copyright 2015 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 "base/macros.h" | 
|   5 #include "mojo/shell/capability_filter_test.h" |   6 #include "mojo/shell/capability_filter_test.h" | 
|   6 #include "mojo/shell/test_package_manager.h" |   7 #include "mojo/shell/test_package_manager.h" | 
|   7 #include "testing/gtest/include/gtest/gtest.h" |   8 #include "testing/gtest/include/gtest/gtest.h" | 
|   8  |   9  | 
|   9 namespace mojo { |  10 namespace mojo { | 
|  10 namespace shell { |  11 namespace shell { | 
|  11 namespace test { |  12 namespace test { | 
|  12  |  13  | 
|  13 class CapabilityFilterApplicationTest : public CapabilityFilterTest { |  14 class CapabilityFilterApplicationTest : public CapabilityFilterTest { | 
|  14  public: |  15  public: | 
| (...skipping 19 matching lines...) Expand all  Loading... | 
|  34   CreateLoader<TestApplication>("test:wildcard"); |  35   CreateLoader<TestApplication>("test:wildcard"); | 
|  35   CreateLoader<TestApplication>("test:blocked"); |  36   CreateLoader<TestApplication>("test:blocked"); | 
|  36   CreateLoader<TestApplication>("test:wildcard2"); |  37   CreateLoader<TestApplication>("test:wildcard2"); | 
|  37   CreateLoader<TestApplication>("test:wildcard3"); |  38   CreateLoader<TestApplication>("test:wildcard3"); | 
|  38   RunWildcardTest(); |  39   RunWildcardTest(); | 
|  39 } |  40 } | 
|  40  |  41  | 
|  41 }  // namespace test |  42 }  // namespace test | 
|  42 }  // namespace shell |  43 }  // namespace shell | 
|  43 }  // namespace mojo |  44 }  // namespace mojo | 
| OLD | NEW |