Chromium Code Reviews| Index: blimp/client/core/contents/blimp_navigation_controller_impl.h |
| diff --git a/blimp/client/core/contents/blimp_navigation_controller_impl.h b/blimp/client/core/contents/blimp_navigation_controller_impl.h |
| index 1193fbaf9da96a848fce26f6c4746cc4f75b3354..cb31f6adbb14eab186ff735247218f2ad7404adf 100644 |
| --- a/blimp/client/core/contents/blimp_navigation_controller_impl.h |
| +++ b/blimp/client/core/contents/blimp_navigation_controller_impl.h |
| @@ -38,6 +38,7 @@ class BlimpNavigationControllerImpl |
| void GoBack() override; |
| void GoForward() override; |
| const GURL& GetURL() override; |
| + const std::string& GetTitle(); |
| private: |
| // NavigationFeatureDelegate implementation. |
| @@ -58,6 +59,7 @@ class BlimpNavigationControllerImpl |
| // The currently active URL. |
| GURL current_url_; |
| + std::string current_title_; |
|
David Trainor- moved to gerrit
2016/08/11 21:40:19
Maybe comment?
shaktisahu
2016/08/12 22:11:48
Done.
|
| DISALLOW_COPY_AND_ASSIGN(BlimpNavigationControllerImpl); |
| }; |