| 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 <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "chrome/browser/sessions/session_id.h" | 10 #include "components/sessions/session_id.h" |
| 11 | 11 |
| 12 class Profile; | 12 class Profile; |
| 13 class TabModel; | 13 class TabModel; |
| 14 | 14 |
| 15 namespace chrome { | 15 namespace chrome { |
| 16 struct NavigateParams; | 16 struct NavigateParams; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace content { | 19 namespace content { |
| 20 class WebContents; | 20 class WebContents; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 41 static bool empty(); | 41 static bool empty(); |
| 42 static size_t size(); | 42 static size_t size(); |
| 43 | 43 |
| 44 static TabModel* get(size_t index); | 44 static TabModel* get(size_t index); |
| 45 | 45 |
| 46 private: | 46 private: |
| 47 DISALLOW_IMPLICIT_CONSTRUCTORS(TabModelList); | 47 DISALLOW_IMPLICIT_CONSTRUCTORS(TabModelList); |
| 48 }; | 48 }; |
| 49 | 49 |
| 50 #endif // CHROME_BROWSER_UI_ANDROID_TAB_MODEL_TAB_MODEL_LIST_H_ | 50 #endif // CHROME_BROWSER_UI_ANDROID_TAB_MODEL_TAB_MODEL_LIST_H_ |
| OLD | NEW |