OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef CONTENT_SHELL_BROWSER_LAYOUT_TEST_BROWSER_CONTEXT_H_ | 5 #ifndef CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_BROWSER_CONTEXT_H_ |
6 #define CONTENT_SHELL_BROWSER_LAYOUT_TEST_BROWSER_CONTEXT_H_ | 6 #define CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_BROWSER_CONTEXT_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "content/shell/browser/shell_browser_context.h" | 9 #include "content/shell/browser/shell_browser_context.h" |
10 | 10 |
11 namespace net { | 11 namespace net { |
12 class NetLog; | 12 class NetLog; |
13 } | 13 } |
14 | 14 |
15 namespace content { | 15 namespace content { |
16 | 16 |
(...skipping 18 matching lines...) Expand all Loading... |
35 URLRequestInterceptorScopedVector request_interceptors) override; | 35 URLRequestInterceptorScopedVector request_interceptors) override; |
36 | 36 |
37 private: | 37 private: |
38 scoped_ptr<LayoutTestPushMessagingService> push_messaging_service_; | 38 scoped_ptr<LayoutTestPushMessagingService> push_messaging_service_; |
39 | 39 |
40 DISALLOW_COPY_AND_ASSIGN(LayoutTestBrowserContext); | 40 DISALLOW_COPY_AND_ASSIGN(LayoutTestBrowserContext); |
41 }; | 41 }; |
42 | 42 |
43 } // namespace content | 43 } // namespace content |
44 | 44 |
45 #endif // CONTENT_SHELL_BROWSER_LAYOUT_TEST_BROWSER_CONTEXT_H_ | 45 #endif // CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_BROWSER_CONTEXT_H_ |
OLD | NEW |