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_APP_SHELL_MAIN_DELEGATE_H_ | 5 #ifndef CONTENT_SHELL_APP_SHELL_MAIN_DELEGATE_H_ |
6 #define CONTENT_SHELL_APP_SHELL_MAIN_DELEGATE_H_ | 6 #define CONTENT_SHELL_APP_SHELL_MAIN_DELEGATE_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" |
9 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "build/build_config.h" |
10 #include "content/public/app/content_main_delegate.h" | 12 #include "content/public/app/content_main_delegate.h" |
11 #include "content/shell/common/shell_content_client.h" | 13 #include "content/shell/common/shell_content_client.h" |
12 | 14 |
13 namespace content { | 15 namespace content { |
14 class ShellContentBrowserClient; | 16 class ShellContentBrowserClient; |
15 class ShellContentRendererClient; | 17 class ShellContentRendererClient; |
16 class ShellContentUtilityClient; | 18 class ShellContentUtilityClient; |
17 | 19 |
18 #if defined(OS_ANDROID) | 20 #if defined(OS_ANDROID) |
19 class BrowserMainRunner; | 21 class BrowserMainRunner; |
(...skipping 27 matching lines...) Expand all Loading... |
47 #if defined(OS_ANDROID) | 49 #if defined(OS_ANDROID) |
48 scoped_ptr<BrowserMainRunner> browser_runner_; | 50 scoped_ptr<BrowserMainRunner> browser_runner_; |
49 #endif | 51 #endif |
50 | 52 |
51 DISALLOW_COPY_AND_ASSIGN(ShellMainDelegate); | 53 DISALLOW_COPY_AND_ASSIGN(ShellMainDelegate); |
52 }; | 54 }; |
53 | 55 |
54 } // namespace content | 56 } // namespace content |
55 | 57 |
56 #endif // CONTENT_SHELL_APP_SHELL_MAIN_DELEGATE_H_ | 58 #endif // CONTENT_SHELL_APP_SHELL_MAIN_DELEGATE_H_ |
OLD | NEW |