| 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 | 9 |
| 10 #include "base/android/jni_weak_ref.h" | 10 #include "base/android/jni_weak_ref.h" |
| 11 #include "base/callback_forward.h" | 11 #include "base/callback_forward.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
| 14 #include "chrome/browser/sessions/session_id.h" | |
| 15 #include "chrome/browser/sync/glue/synced_tab_delegate_android.h" | 14 #include "chrome/browser/sync/glue/synced_tab_delegate_android.h" |
| 16 #include "chrome/browser/ui/tab_contents/core_tab_helper_delegate.h" | 15 #include "chrome/browser/ui/tab_contents/core_tab_helper_delegate.h" |
| 17 #include "chrome/browser/ui/toolbar/toolbar_model.h" | 16 #include "chrome/browser/ui/toolbar/toolbar_model.h" |
| 17 #include "components/sessions/session_id.h" |
| 18 #include "content/public/browser/notification_observer.h" | 18 #include "content/public/browser/notification_observer.h" |
| 19 #include "content/public/browser/notification_registrar.h" | 19 #include "content/public/browser/notification_registrar.h" |
| 20 | 20 |
| 21 class GURL; | 21 class GURL; |
| 22 class Profile; | 22 class Profile; |
| 23 class SkBitmap; | 23 class SkBitmap; |
| 24 | 24 |
| 25 namespace chrome { | 25 namespace chrome { |
| 26 struct NavigateParams; | 26 struct NavigateParams; |
| 27 } | 27 } |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 scoped_ptr<content::WebContents> web_contents_; | 171 scoped_ptr<content::WebContents> web_contents_; |
| 172 scoped_ptr<chrome::android::ChromeWebContentsDelegateAndroid> | 172 scoped_ptr<chrome::android::ChromeWebContentsDelegateAndroid> |
| 173 web_contents_delegate_; | 173 web_contents_delegate_; |
| 174 | 174 |
| 175 scoped_ptr<browser_sync::SyncedTabDelegateAndroid> synced_tab_delegate_; | 175 scoped_ptr<browser_sync::SyncedTabDelegateAndroid> synced_tab_delegate_; |
| 176 | 176 |
| 177 DISALLOW_COPY_AND_ASSIGN(TabAndroid); | 177 DISALLOW_COPY_AND_ASSIGN(TabAndroid); |
| 178 }; | 178 }; |
| 179 | 179 |
| 180 #endif // CHROME_BROWSER_ANDROID_TAB_ANDROID_H_ | 180 #endif // CHROME_BROWSER_ANDROID_TAB_ANDROID_H_ |
| OLD | NEW |