| Index: chrome/browser/ui/ash/app_launcher_id.cc
|
| diff --git a/chrome/browser/ui/ash/app_launcher_id.cc b/chrome/browser/ui/ash/app_launcher_id.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..fa42b1f51fc849e77b144d753a0799021eec7a18
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/ash/app_launcher_id.cc
|
| @@ -0,0 +1,27 @@
|
| +// Copyright 2017 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "chrome/browser/ui/ash/app_launcher_id.h"
|
| +
|
| +#include "base/logging.h"
|
| +
|
| +namespace ash {
|
| +namespace launcher {
|
| +
|
| +AppLauncherId::AppLauncherId(const std::string& app_id,
|
| + const std::string& launch_id)
|
| + : app_id_(app_id), launch_id_(launch_id) {
|
| + DCHECK(!app_id.empty());
|
| +}
|
| +
|
| +AppLauncherId::AppLauncherId(const std::string& app_id) : app_id_(app_id) {
|
| + DCHECK(!app_id.empty());
|
| +}
|
| +
|
| +AppLauncherId::AppLauncherId() {}
|
| +
|
| +AppLauncherId::~AppLauncherId() {}
|
| +
|
| +} // namespace launcher
|
| +} // namespace ash
|
|
|