| 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 CHROME_BROWSER_ANDROID_TAB_ANDROID_H_ | 5 #ifndef CHROME_BROWSER_ANDROID_TAB_ANDROID_H_ |
| 6 #define CHROME_BROWSER_ANDROID_TAB_ANDROID_H_ | 6 #define CHROME_BROWSER_ANDROID_TAB_ANDROID_H_ |
| 7 | 7 |
| 8 #include <jni.h> | 8 #include <jni.h> |
| 9 #include <stdint.h> |
| 9 | 10 |
| 10 #include "base/android/jni_weak_ref.h" | 11 #include "base/android/jni_weak_ref.h" |
| 11 #include "base/callback_forward.h" | 12 #include "base/callback_forward.h" |
| 13 #include "base/macros.h" |
| 12 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/strings/string16.h" | 15 #include "base/strings/string16.h" |
| 14 #include "chrome/browser/search/instant_service_observer.h" | 16 #include "chrome/browser/search/instant_service_observer.h" |
| 15 #include "chrome/browser/sync/glue/synced_tab_delegate_android.h" | 17 #include "chrome/browser/sync/glue/synced_tab_delegate_android.h" |
| 16 #include "chrome/browser/ui/search/search_tab_helper_delegate.h" | 18 #include "chrome/browser/ui/search/search_tab_helper_delegate.h" |
| 17 #include "chrome/browser/ui/tab_contents/core_tab_helper_delegate.h" | 19 #include "chrome/browser/ui/tab_contents/core_tab_helper_delegate.h" |
| 18 #include "components/favicon/core/favicon_driver_observer.h" | 20 #include "components/favicon/core/favicon_driver_observer.h" |
| 19 #include "components/infobars/core/infobar_manager.h" | 21 #include "components/infobars/core/infobar_manager.h" |
| 20 #include "components/sessions/core/session_id.h" | 22 #include "components/sessions/core/session_id.h" |
| 21 #include "components/toolbar/toolbar_model.h" | 23 #include "components/toolbar/toolbar_model.h" |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 scoped_ptr<content::WebContents> web_contents_; | 278 scoped_ptr<content::WebContents> web_contents_; |
| 277 scoped_ptr<chrome::android::TabWebContentsDelegateAndroid> | 279 scoped_ptr<chrome::android::TabWebContentsDelegateAndroid> |
| 278 web_contents_delegate_; | 280 web_contents_delegate_; |
| 279 | 281 |
| 280 scoped_ptr<browser_sync::SyncedTabDelegateAndroid> synced_tab_delegate_; | 282 scoped_ptr<browser_sync::SyncedTabDelegateAndroid> synced_tab_delegate_; |
| 281 | 283 |
| 282 DISALLOW_COPY_AND_ASSIGN(TabAndroid); | 284 DISALLOW_COPY_AND_ASSIGN(TabAndroid); |
| 283 }; | 285 }; |
| 284 | 286 |
| 285 #endif // CHROME_BROWSER_ANDROID_TAB_ANDROID_H_ | 287 #endif // CHROME_BROWSER_ANDROID_TAB_ANDROID_H_ |
| OLD | NEW |