| 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 #include "athena/content/app_activity.h" | 5 #include "athena/content/app_activity.h" |
| 6 | 6 |
| 7 #include "athena/activity/public/activity_manager.h" | 7 #include "athena/activity/public/activity_manager.h" |
| 8 #include "athena/content/app_activity_registry.h" | 8 #include "athena/content/app_activity_registry.h" |
| 9 #include "athena/content/content_proxy.h" | 9 #include "athena/content/content_proxy.h" |
| 10 #include "athena/content/public/app_registry.h" | 10 #include "athena/content/public/app_registry.h" |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 // Register the activity. | 211 // Register the activity. |
| 212 app_activity_registry_->RegisterAppActivity(this); | 212 app_activity_registry_->RegisterAppActivity(this); |
| 213 } | 213 } |
| 214 | 214 |
| 215 void AppActivity::HideContentProxy() { | 215 void AppActivity::HideContentProxy() { |
| 216 content_proxy_.reset(); | 216 content_proxy_.reset(); |
| 217 } | 217 } |
| 218 | 218 |
| 219 void AppActivity::ShowContentProxy() { | 219 void AppActivity::ShowContentProxy() { |
| 220 if (!content_proxy_.get() && web_view_) | 220 if (!content_proxy_.get() && web_view_) |
| 221 content_proxy_.reset(new ContentProxy(web_view_, this)); | 221 content_proxy_.reset(new ContentProxy(web_view_)); |
| 222 } | 222 } |
| 223 | 223 |
| 224 } // namespace athena | 224 } // namespace athena |
| OLD | NEW |