| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_UI_ASH_APP_LAUNCHER_ID_H_ |
| 6 #define CHROME_BROWSER_UI_ASH_APP_LAUNCHER_ID_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 namespace ash { |
| 11 namespace launcher { |
| 12 |
| 13 // 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 |
| 15 // |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 |
| 17 // 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 |
| 19 // has the same |app_id|. The |app_id| must not be empty. |
| 20 class AppLauncherId { |
| 21 public: |
| 22 AppLauncherId(const std::string& app_id, const std::string& launch_id); |
| 23 // Creates an AppLauncherId with an empty |launch_id|. |
| 24 explicit AppLauncherId(const std::string& app_id); |
| 25 // Empty constructor for pre-allocating. |
| 26 AppLauncherId(); |
| 27 ~AppLauncherId(); |
| 28 |
| 29 AppLauncherId(const AppLauncherId& app_launcher_id) = default; |
| 30 AppLauncherId(AppLauncherId&& app_launcher_id) = default; |
| 31 AppLauncherId& operator=(const AppLauncherId& other) = default; |
| 32 |
| 33 const std::string& app_id() const { return app_id_; } |
| 34 const std::string& launch_id() const { return launch_id_; } |
| 35 |
| 36 private: |
| 37 // The application id associated with a set of windows. |
| 38 std::string app_id_; |
| 39 // An id that can be passed to an app when launched in order to support |
| 40 // multiple shelf items per app. |
| 41 std::string launch_id_; |
| 42 }; |
| 43 |
| 44 } // namespace launcher |
| 45 } // namespace ash |
| 46 |
| 47 #endif // CHROME_BROWSER_UI_ASH_APP_LAUNCHER_ID_H_ |
| OLD | NEW |