| 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_SESSIONS_SESSION_TYPES_H_ | 5 #ifndef CHROME_BROWSER_SESSIONS_SESSION_TYPES_H_ |
| 6 #define CHROME_BROWSER_SESSIONS_SESSION_TYPES_H_ | 6 #define CHROME_BROWSER_SESSIONS_SESSION_TYPES_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 | 193 |
| 194 // Timestamp for when this window was last modified. | 194 // Timestamp for when this window was last modified. |
| 195 base::Time timestamp; | 195 base::Time timestamp; |
| 196 | 196 |
| 197 // The tabs, ordered by visual order. | 197 // The tabs, ordered by visual order. |
| 198 std::vector<SessionTab*> tabs; | 198 std::vector<SessionTab*> tabs; |
| 199 | 199 |
| 200 // Is the window maximized, minimized, or normal? | 200 // Is the window maximized, minimized, or normal? |
| 201 ui::WindowShowState show_state; | 201 ui::WindowShowState show_state; |
| 202 | 202 |
| 203 std::string app_name; |
| 204 |
| 203 private: | 205 private: |
| 204 DISALLOW_COPY_AND_ASSIGN(SessionWindow); | 206 DISALLOW_COPY_AND_ASSIGN(SessionWindow); |
| 205 }; | 207 }; |
| 206 | 208 |
| 207 #endif // CHROME_BROWSER_SESSIONS_SESSION_TYPES_H_ | 209 #endif // CHROME_BROWSER_SESSIONS_SESSION_TYPES_H_ |
| OLD | NEW |