| 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 UI_VIEWS_EXAMPLES_CONTENT_CLIENT_EXAMPLES_MAIN_DELEGATE_H_ | 5 #ifndef UI_VIEWS_EXAMPLES_CONTENT_CLIENT_EXAMPLES_MAIN_DELEGATE_H_ |
| 6 #define UI_VIEWS_EXAMPLES_CONTENT_CLIENT_EXAMPLES_MAIN_DELEGATE_H_ | 6 #define UI_VIEWS_EXAMPLES_CONTENT_CLIENT_EXAMPLES_MAIN_DELEGATE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> |
| 10 |
| 11 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 10 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "content/public/app/content_main_delegate.h" |
| 11 #include "content/shell/shell_content_client.h" | 15 #include "content/shell/shell_content_client.h" |
| 12 #include "content/public/app/content_main_delegate.h" | |
| 13 | 16 |
| 14 namespace content { | 17 namespace content { |
| 15 class ShellContentRendererClient; | 18 class ShellContentRendererClient; |
| 16 class ShellContentPluginClient; | 19 class ShellContentPluginClient; |
| 17 class ShellContentUtilityClient; | 20 class ShellContentUtilityClient; |
| 18 } | 21 } |
| 19 | 22 |
| 20 namespace views { | 23 namespace views { |
| 21 namespace examples { | 24 namespace examples { |
| 22 | 25 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 scoped_ptr<content::ShellContentUtilityClient> utility_client_; | 58 scoped_ptr<content::ShellContentUtilityClient> utility_client_; |
| 56 content::ShellContentClient content_client_; | 59 content::ShellContentClient content_client_; |
| 57 | 60 |
| 58 DISALLOW_COPY_AND_ASSIGN(ExamplesMainDelegate); | 61 DISALLOW_COPY_AND_ASSIGN(ExamplesMainDelegate); |
| 59 }; | 62 }; |
| 60 | 63 |
| 61 } // namespace examples | 64 } // namespace examples |
| 62 } // namespace views | 65 } // namespace views |
| 63 | 66 |
| 64 #endif // UI_VIEWS_EXAMPLES_CONTENT_CLIENT_EXAMPLES_MAIN_DELEGATE_H_ | 67 #endif // UI_VIEWS_EXAMPLES_CONTENT_CLIENT_EXAMPLES_MAIN_DELEGATE_H_ |
| OLD | NEW |