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 "gen/thing.h" | 5 #include "gen/thing.h" |
6 | 6 |
7 namespace v8 { | 7 namespace v8 { |
8 | 8 |
9 class InterfaceOutsideOfBlink { | 9 class InterfaceOutsideOfBlink { |
10 public: | 10 public: |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 }; | 203 }; |
204 | 204 |
205 } // namespace WTF | 205 } // namespace WTF |
206 | 206 |
207 void F2() { | 207 void F2() { |
208 blink::StructInBlink b; | 208 blink::StructInBlink b; |
209 b.function(); | 209 b.function(); |
210 WTF::StructInWTF w; | 210 WTF::StructInWTF w; |
211 w.function(); | 211 w.function(); |
212 } | 212 } |
| 213 |
| 214 namespace blink { |
| 215 |
| 216 class ClassDeclaredInsideBlink { |
| 217 public: |
| 218 static void methodDefinedOutsideBlink(); |
| 219 }; |
| 220 |
| 221 namespace internal { |
| 222 |
| 223 class InternalClass { |
| 224 public: |
| 225 static void method(); |
| 226 }; |
| 227 |
| 228 } // namespace internal |
| 229 |
| 230 } // namespace blink |
| 231 |
| 232 // https://crbug.com/640688 - need to rewrite method name below. |
| 233 void blink::ClassDeclaredInsideBlink::methodDefinedOutsideBlink() {} |
| 234 void blink::internal::InternalClass::method() {} |
OLD | NEW |