| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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_UI_ASH_APP_LAUNCHER_ID_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_APP_LAUNCHER_ID_H_ |
| 6 #define CHROME_BROWSER_UI_ASH_APP_LAUNCHER_ID_H_ | 6 #define CHROME_BROWSER_UI_ASH_APP_LAUNCHER_ID_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 namespace ash { | 10 namespace ash { |
| 11 namespace launcher { | |
| 12 | 11 |
| 13 // A unique chrome launcher id used to identify a shelf item. This class is a | 12 // A unique chrome launcher id used to identify a shelf item. This class is a |
| 14 // wrapper for the chrome launcher identifier. |app_launcher_id_| includes the | 13 // wrapper for the chrome launcher identifier. |app_launcher_id_| includes the |
| 15 // |app_id| and the |launch_id|. The |app_id| is the application id associated | 14 // |app_id| and the |launch_id|. The |app_id| is the application id associated |
| 16 // with a set of windows. The |launch_id| is an id that can be passed to an app | 15 // with a set of windows. The |launch_id| is an id that can be passed to an app |
| 17 // when launched in order to support multiple shelf items per app. This id is | 16 // when launched in order to support multiple shelf items per app. This id is |
| 18 // used together with the |app_id| to uniquely identify each shelf item that | 17 // used together with the |app_id| to uniquely identify each shelf item that |
| 19 // has the same |app_id|. The |app_id| must not be empty. | 18 // has the same |app_id|. The |app_id| must not be empty. |
| 20 class AppLauncherId { | 19 class AppLauncherId { |
| 21 public: | 20 public: |
| (...skipping 12 matching lines...) Expand all Loading... |
| 34 const std::string& launch_id() const { return launch_id_; } | 33 const std::string& launch_id() const { return launch_id_; } |
| 35 | 34 |
| 36 private: | 35 private: |
| 37 // The application id associated with a set of windows. | 36 // The application id associated with a set of windows. |
| 38 std::string app_id_; | 37 std::string app_id_; |
| 39 // An id that can be passed to an app when launched in order to support | 38 // An id that can be passed to an app when launched in order to support |
| 40 // multiple shelf items per app. | 39 // multiple shelf items per app. |
| 41 std::string launch_id_; | 40 std::string launch_id_; |
| 42 }; | 41 }; |
| 43 | 42 |
| 44 } // namespace launcher | |
| 45 } // namespace ash | 43 } // namespace ash |
| 46 | 44 |
| 47 #endif // CHROME_BROWSER_UI_ASH_APP_LAUNCHER_ID_H_ | 45 #endif // CHROME_BROWSER_UI_ASH_APP_LAUNCHER_ID_H_ |
| OLD | NEW |