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 | 7 |
8 #include <algorithm> | 8 #include <algorithm> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
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 "base/time/time.h" | 14 #include "base/time/time.h" |
15 #include "components/sessions/serialized_navigation_entry.h" | 15 #include "components/sessions/serialized_navigation_entry.h" |
16 #include "components/sessions/session_id.h" | 16 #include "components/sessions/session_id.h" |
17 #include "content/public/common/page_transition_types.h" | |
18 #include "sync/protocol/session_specifics.pb.h" | 17 #include "sync/protocol/session_specifics.pb.h" |
19 #include "ui/base/ui_base_types.h" | 18 #include "ui/base/ui_base_types.h" |
20 #include "ui/gfx/rect.h" | 19 #include "ui/gfx/rect.h" |
21 #include "url/gurl.h" | 20 #include "url/gurl.h" |
22 | 21 |
23 namespace content { | 22 namespace content { |
24 class BrowserContext; | 23 class BrowserContext; |
25 class NavigationEntry; | 24 class NavigationEntry; |
26 } | 25 } |
27 | 26 |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 // Is the window maximized, minimized, or normal? | 149 // Is the window maximized, minimized, or normal? |
151 ui::WindowShowState show_state; | 150 ui::WindowShowState show_state; |
152 | 151 |
153 std::string app_name; | 152 std::string app_name; |
154 | 153 |
155 private: | 154 private: |
156 DISALLOW_COPY_AND_ASSIGN(SessionWindow); | 155 DISALLOW_COPY_AND_ASSIGN(SessionWindow); |
157 }; | 156 }; |
158 | 157 |
159 #endif // CHROME_BROWSER_SESSIONS_SESSION_TYPES_H_ | 158 #endif // CHROME_BROWSER_SESSIONS_SESSION_TYPES_H_ |
OLD | NEW |