diff options
| author | 2017-07-06 21:12:54 +0000 | |
|---|---|---|
| committer | 2017-07-06 21:12:54 +0000 | |
| commit | 7b46197bc2459b3324e0049277a911e31414bb52 (patch) | |
| tree | d1415e7d77bd9110194878f93222f057fabbbb9c /test/ForClassLoaderC/Classes.java | |
| parent | 0656044bf8b1d5053cdea6615f4d0aebad5b64b8 (diff) | |
| parent | cdd4912eef02cce1ae4ec95e025794dced089466 (diff) | |
Merge changes I8d0f5341,Iced0de7c,I742cd614
* changes:
Add fast path to FindClass for DelegateLastClassLoader
Add DelegateLastClassLoader to the list of WellKnownClassLoaders
Refactor FindClass code in class linker
Diffstat (limited to 'test/ForClassLoaderC/Classes.java')
| -rw-r--r-- | test/ForClassLoaderC/Classes.java | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/test/ForClassLoaderC/Classes.java b/test/ForClassLoaderC/Classes.java new file mode 100644 index 0000000000..7b9e83ffff --- /dev/null +++ b/test/ForClassLoaderC/Classes.java @@ -0,0 +1,30 @@ +/* + * Copyright (C) 2017 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +class DefinedInC { +} + +class DefinedInAC { +} + +class DefinedInABC { +} + +class DefinedInBC { +} + +class DefinedInCD { +} |