| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_BASE_SESSION_SERVICE_COMMANDS_H_ | 5 #ifndef COMPONENTS_SESSIONS_BASE_SESSION_SERVICE_COMMANDS_H_ |
| 6 #define COMPONENTS_SESSIONS_BASE_SESSION_SERVICE_COMMANDS_H_ | 6 #define COMPONENTS_SESSIONS_BASE_SESSION_SERVICE_COMMANDS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 const std::string& user_agent_override); | 38 const std::string& user_agent_override); |
| 39 | 39 |
| 40 // Creates a SessionCommand stores a browser window's app name. | 40 // Creates a SessionCommand stores a browser window's app name. |
| 41 SESSIONS_EXPORT scoped_ptr<SessionCommand> CreateSetWindowAppNameCommand( | 41 SESSIONS_EXPORT scoped_ptr<SessionCommand> CreateSetWindowAppNameCommand( |
| 42 SessionID::id_type command_id, | 42 SessionID::id_type command_id, |
| 43 SessionID::id_type window_id, | 43 SessionID::id_type window_id, |
| 44 const std::string& app_name); | 44 const std::string& app_name); |
| 45 | 45 |
| 46 // Converts a SessionCommand previously created by | 46 // Converts a SessionCommand previously created by |
| 47 // CreateUpdateTabNavigationCommand into a | 47 // CreateUpdateTabNavigationCommand into a |
| 48 // sessions::SerializedNavigationEntry. Returns true on success. If | 48 // SerializedNavigationEntry. Returns true on success. If |
| 49 // successful |tab_id| is set to the id of the restored tab. | 49 // successful |tab_id| is set to the id of the restored tab. |
| 50 SESSIONS_EXPORT bool RestoreUpdateTabNavigationCommand( | 50 SESSIONS_EXPORT bool RestoreUpdateTabNavigationCommand( |
| 51 const SessionCommand& command, | 51 const SessionCommand& command, |
| 52 sessions::SerializedNavigationEntry* navigation, | 52 sessions::SerializedNavigationEntry* navigation, |
| 53 SessionID::id_type* tab_id); | 53 SessionID::id_type* tab_id); |
| 54 | 54 |
| 55 // Extracts a SessionCommand as previously created by | 55 // Extracts a SessionCommand as previously created by |
| 56 // CreateSetTabExtensionAppIDCommand into the tab id and application | 56 // CreateSetTabExtensionAppIDCommand into the tab id and application |
| 57 // extension id. | 57 // extension id. |
| 58 SESSIONS_EXPORT bool RestoreSetTabExtensionAppIDCommand( | 58 SESSIONS_EXPORT bool RestoreSetTabExtensionAppIDCommand( |
| (...skipping 11 matching lines...) Expand all Loading... |
| 70 // Extracts a SessionCommand as previously created by | 70 // Extracts a SessionCommand as previously created by |
| 71 // CreateSetWindowAppNameCommand into the window id and application name. | 71 // CreateSetWindowAppNameCommand into the window id and application name. |
| 72 SESSIONS_EXPORT bool RestoreSetWindowAppNameCommand( | 72 SESSIONS_EXPORT bool RestoreSetWindowAppNameCommand( |
| 73 const SessionCommand& command, | 73 const SessionCommand& command, |
| 74 SessionID::id_type* window_id, | 74 SessionID::id_type* window_id, |
| 75 std::string* app_name); | 75 std::string* app_name); |
| 76 | 76 |
| 77 } // namespace sessions | 77 } // namespace sessions |
| 78 | 78 |
| 79 #endif // COMPONENTS_SESSIONS_BASE_SESSION_SERVICE_COMMANDS_H_ | 79 #endif // COMPONENTS_SESSIONS_BASE_SESSION_SERVICE_COMMANDS_H_ |
| OLD | NEW |