Home | History | Annotate | Download | only in testing
      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 namespace blink {
      9 
     10 class Document;
     11 class Internals;
     12 
     13 class InternalsNavigatorContentUtils {
     14 public:
     15     static void setNavigatorContentUtilsClientMock(Internals&, Document*);
     16 };
     17 
     18 } // namespace blink
     19 
     20 #endif // InternalsNavigatorContentUtils_h
     21