| 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_UI_ANDROID_TAB_MODEL_TAB_MODEL_LIST_H_ | 5 #ifndef CHROME_BROWSER_UI_ANDROID_TAB_MODEL_TAB_MODEL_LIST_H_ |
| 6 #define CHROME_BROWSER_UI_ANDROID_TAB_MODEL_TAB_MODEL_LIST_H_ | 6 #define CHROME_BROWSER_UI_ANDROID_TAB_MODEL_TAB_MODEL_LIST_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "components/sessions/core/session_id.h" | 13 #include "components/sessions/core/session_id.h" |
| 14 | 14 |
| 15 class Profile; | |
| 16 class TabModel; | 15 class TabModel; |
| 17 | 16 |
| 18 namespace chrome { | 17 namespace chrome { |
| 19 struct NavigateParams; | 18 struct NavigateParams; |
| 20 } | 19 } |
| 21 | 20 |
| 22 namespace content { | 21 namespace content { |
| 23 class WebContents; | 22 class WebContents; |
| 24 } | 23 } |
| 25 | 24 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 44 static bool empty(); | 43 static bool empty(); |
| 45 static size_t size(); | 44 static size_t size(); |
| 46 | 45 |
| 47 static TabModel* get(size_t index); | 46 static TabModel* get(size_t index); |
| 48 | 47 |
| 49 private: | 48 private: |
| 50 DISALLOW_IMPLICIT_CONSTRUCTORS(TabModelList); | 49 DISALLOW_IMPLICIT_CONSTRUCTORS(TabModelList); |
| 51 }; | 50 }; |
| 52 | 51 |
| 53 #endif // CHROME_BROWSER_UI_ANDROID_TAB_MODEL_TAB_MODEL_LIST_H_ | 52 #endif // CHROME_BROWSER_UI_ANDROID_TAB_MODEL_TAB_MODEL_LIST_H_ |
| OLD | NEW |