OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_SHELL_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ |
6 #define CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ | 6 #define CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/platform_file.h" | |
14 #include "content/public/browser/content_browser_client.h" | 13 #include "content/public/browser/content_browser_client.h" |
15 #include "content/shell/browser/shell_speech_recognition_manager_delegate.h" | 14 #include "content/shell/browser/shell_speech_recognition_manager_delegate.h" |
16 | 15 |
17 namespace content { | 16 namespace content { |
18 | 17 |
19 class ShellBrowserContext; | 18 class ShellBrowserContext; |
20 class ShellBrowserMainParts; | 19 class ShellBrowserMainParts; |
21 class ShellResourceDispatcherHostDelegate; | 20 class ShellResourceDispatcherHostDelegate; |
22 | 21 |
23 class ShellContentBrowserClient : public ContentBrowserClient { | 22 class ShellContentBrowserClient : public ContentBrowserClient { |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 resource_dispatcher_host_delegate_; | 90 resource_dispatcher_host_delegate_; |
92 | 91 |
93 base::FilePath webkit_source_dir_; | 92 base::FilePath webkit_source_dir_; |
94 | 93 |
95 ShellBrowserMainParts* shell_browser_main_parts_; | 94 ShellBrowserMainParts* shell_browser_main_parts_; |
96 }; | 95 }; |
97 | 96 |
98 } // namespace content | 97 } // namespace content |
99 | 98 |
100 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ | 99 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |