Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4687)

Unified Diff: chrome/browser/media/router/issue.cc

Issue 2771413003: Move c/b/media/router/mojo/*.mojom to chrome/common/media_router/mojo/*.mojom (Closed)
Patch Set: Rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/media/router/issue.cc
diff --git a/chrome/browser/media/router/issue.cc b/chrome/browser/media/router/issue.cc
deleted file mode 100644
index 5f402689a07323b0f4379802f55f539d11dd2b4c..0000000000000000000000000000000000000000
--- a/chrome/browser/media/router/issue.cc
+++ /dev/null
@@ -1,50 +0,0 @@
-// Copyright 2015 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/media/router/issue.h"
-
-#include "base/atomic_sequence_num.h"
-
-namespace media_router {
-
-namespace {
-// ID generator for Issue.
-base::StaticAtomicSequenceNumber g_next_issue_id;
-}
-
-IssueInfo::IssueInfo()
- : default_action(IssueInfo::Action::DISMISS),
- severity(IssueInfo::Severity::NOTIFICATION),
- is_blocking(false),
- help_page_id(IssueInfo::kUnknownHelpPageId) {}
-
-IssueInfo::IssueInfo(const std::string& title,
- const Action default_action,
- Severity severity)
- : title(title),
- default_action(default_action),
- severity(severity),
- is_blocking(severity == IssueInfo::Severity::FATAL),
- help_page_id(IssueInfo::kUnknownHelpPageId) {}
-
-IssueInfo::IssueInfo(const IssueInfo& other) = default;
-
-IssueInfo::~IssueInfo() = default;
-
-IssueInfo& IssueInfo::operator=(const IssueInfo& other) = default;
-
-bool IssueInfo::operator==(const IssueInfo& other) const {
- return title == other.title && default_action == other.default_action &&
- severity == other.severity && message == other.message &&
- secondary_actions == other.secondary_actions &&
- route_id == other.route_id && is_blocking == other.is_blocking &&
- help_page_id == other.help_page_id;
-}
-
-Issue::Issue(const IssueInfo& info)
- : id_(g_next_issue_id.GetNext()), info_(info) {}
-
-Issue::~Issue() = default;
-
-} // namespace media_router

Powered by Google App Engine
This is Rietveld 408576698