Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef InternalsNavigatorContentUtils_h | |
| 6 #define InternalsNavigatorContentUtils_h | |
| 7 | |
| 8 #include "wtf/text/WTFString.h" | |
|
haraken
2014/06/02 03:43:29
Remove this.
gyuyoung-inactive
2014/06/02 05:14:37
Ok, I will do.
| |
| 9 | |
| 10 namespace WebCore { | |
| 11 | |
| 12 class Document; | |
| 13 class NavigatorContentUtilsClientMock; | |
| 14 class Internals; | |
| 15 | |
| 16 class InternalsNavigatorContentUtils { | |
| 17 public: | |
| 18 static void setNavigatorContentUtilsClientMock(Internals&, Document*); | |
| 19 }; | |
| 20 | |
| 21 } // namespace WebCore | |
| 22 | |
| 23 #endif // InternalsNavigatorContentUtils_h | |
| OLD | NEW |