| 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 CHROMECAST_SHELL_APP_CAST_MAIN_DELEGATE_H_ | 5 #ifndef CHROMECAST_APP_CAST_MAIN_DELEGATE_H_ |
| 6 #define CHROMECAST_SHELL_APP_CAST_MAIN_DELEGATE_H_ | 6 #define CHROMECAST_APP_CAST_MAIN_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "chromecast/shell/common/cast_content_client.h" | 10 #include "chromecast/app/cast_content_client.h" |
| 11 #include "content/public/app/content_main_delegate.h" | 11 #include "content/public/app/content_main_delegate.h" |
| 12 | 12 |
| 13 namespace content { | 13 namespace content { |
| 14 class BrowserMainRunner; | 14 class BrowserMainRunner; |
| 15 } // namespace content | 15 } // namespace content |
| 16 | 16 |
| 17 namespace chromecast { | 17 namespace chromecast { |
| 18 | 18 |
| 19 class CastResourceDelegate; | 19 class CastResourceDelegate; |
| 20 | 20 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 #if defined(OS_ANDROID) | 52 #if defined(OS_ANDROID) |
| 53 scoped_ptr<content::BrowserMainRunner> browser_runner_; | 53 scoped_ptr<content::BrowserMainRunner> browser_runner_; |
| 54 #endif // defined(OS_ANDROID) | 54 #endif // defined(OS_ANDROID) |
| 55 | 55 |
| 56 DISALLOW_COPY_AND_ASSIGN(CastMainDelegate); | 56 DISALLOW_COPY_AND_ASSIGN(CastMainDelegate); |
| 57 }; | 57 }; |
| 58 | 58 |
| 59 } // namespace shell | 59 } // namespace shell |
| 60 } // namespace chromecast | 60 } // namespace chromecast |
| 61 | 61 |
| 62 #endif // CHROMECAST_SHELL_APP_CAST_MAIN_DELEGATE_H_ | 62 #endif // CHROMECAST_APP_CAST_MAIN_DELEGATE_H_ |
| OLD | NEW |