| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 COMPONENTS_SESSIONS_SESSION_TYPES_H_ | 5 #ifndef COMPONENTS_SESSIONS_SESSION_TYPES_H_ |
| 6 #define COMPONENTS_SESSIONS_SESSION_TYPES_H_ | 6 #define COMPONENTS_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 "components/sessions/sessions_export.h" | 17 #include "components/sessions/sessions_export.h" |
| 18 #include "sync/protocol/session_specifics.pb.h" | 18 #include "sync/protocol/session_specifics.pb.h" |
| 19 #include "ui/base/ui_base_types.h" | 19 #include "ui/base/ui_base_types.h" |
| 20 #include "ui/gfx/rect.h" | 20 #include "ui/gfx/geometry/rect.h" |
| 21 #include "url/gurl.h" | 21 #include "url/gurl.h" |
| 22 | 22 |
| 23 namespace content { | 23 namespace content { |
| 24 class BrowserContext; | 24 class BrowserContext; |
| 25 class NavigationEntry; | 25 class NavigationEntry; |
| 26 } | 26 } |
| 27 | 27 |
| 28 namespace sessions { | 28 namespace sessions { |
| 29 | 29 |
| 30 // SessionTab ---------------------------------------------------------------- | 30 // SessionTab ---------------------------------------------------------------- |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 | 160 |
| 161 std::string app_name; | 161 std::string app_name; |
| 162 | 162 |
| 163 private: | 163 private: |
| 164 DISALLOW_COPY_AND_ASSIGN(SessionWindow); | 164 DISALLOW_COPY_AND_ASSIGN(SessionWindow); |
| 165 }; | 165 }; |
| 166 | 166 |
| 167 } // namespace sessions | 167 } // namespace sessions |
| 168 | 168 |
| 169 #endif // COMPONENTS_SESSIONS_SESSION_TYPES_H_ | 169 #endif // COMPONENTS_SESSIONS_SESSION_TYPES_H_ |
| OLD | NEW |