OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_SHELL_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ |
6 #define CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ | 6 #define CONTENT_SHELL_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" |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 return resource_dispatcher_host_delegate_.get(); | 58 return resource_dispatcher_host_delegate_.get(); |
59 } | 59 } |
60 ShellBrowserMainParts* shell_browser_main_parts() { | 60 ShellBrowserMainParts* shell_browser_main_parts() { |
61 return shell_browser_main_parts_; | 61 return shell_browser_main_parts_; |
62 } | 62 } |
63 | 63 |
64 private: | 64 private: |
65 scoped_ptr<ShellResourceDispatcherHostDelegate> | 65 scoped_ptr<ShellResourceDispatcherHostDelegate> |
66 resource_dispatcher_host_delegate_; | 66 resource_dispatcher_host_delegate_; |
67 | 67 |
68 FilePath webkit_source_dir_; | 68 base::FilePath webkit_source_dir_; |
69 | 69 |
70 ShellBrowserMainParts* shell_browser_main_parts_; | 70 ShellBrowserMainParts* shell_browser_main_parts_; |
71 }; | 71 }; |
72 | 72 |
73 } // namespace content | 73 } // namespace content |
74 | 74 |
75 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ | 75 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |