| 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_CORE_SESSION_TYPES_H_ | 5 #ifndef COMPONENTS_SESSIONS_CORE_SESSION_TYPES_H_ |
| 6 #define COMPONENTS_SESSIONS_CORE_SESSION_TYPES_H_ | 6 #define COMPONENTS_SESSIONS_CORE_SESSION_TYPES_H_ |
| 7 | 7 |
| 8 #include <algorithm> | 8 #include <algorithm> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
| 15 #include "base/time/time.h" | 15 #include "base/time/time.h" |
| 16 #include "components/sessions/core/serialized_navigation_entry.h" | 16 #include "components/sessions/core/serialized_navigation_entry.h" |
| 17 #include "components/sessions/core/session_id.h" | 17 #include "components/sessions/core/session_id.h" |
| 18 #include "components/sessions/core/sessions_export.h" | 18 #include "components/sessions/core/sessions_export.h" |
| 19 #include "components/sync/protocol/session_specifics.pb.h" |
| 19 #include "components/variations/variations_associated_data.h" | 20 #include "components/variations/variations_associated_data.h" |
| 20 #include "sync/protocol/session_specifics.pb.h" | |
| 21 #include "ui/base/ui_base_types.h" | 21 #include "ui/base/ui_base_types.h" |
| 22 #include "ui/gfx/geometry/rect.h" | 22 #include "ui/gfx/geometry/rect.h" |
| 23 #include "url/gurl.h" | 23 #include "url/gurl.h" |
| 24 | 24 |
| 25 namespace content { | 25 namespace content { |
| 26 class BrowserContext; | 26 class BrowserContext; |
| 27 class NavigationEntry; | 27 class NavigationEntry; |
| 28 } | 28 } |
| 29 | 29 |
| 30 namespace sessions { | 30 namespace sessions { |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 | 173 |
| 174 std::string app_name; | 174 std::string app_name; |
| 175 | 175 |
| 176 private: | 176 private: |
| 177 DISALLOW_COPY_AND_ASSIGN(SessionWindow); | 177 DISALLOW_COPY_AND_ASSIGN(SessionWindow); |
| 178 }; | 178 }; |
| 179 | 179 |
| 180 } // namespace sessions | 180 } // namespace sessions |
| 181 | 181 |
| 182 #endif // COMPONENTS_SESSIONS_CORE_SESSION_TYPES_H_ | 182 #endif // COMPONENTS_SESSIONS_CORE_SESSION_TYPES_H_ |
| OLD | NEW |