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

Unified Diff: mojo/public/bindings/lib/message_queue.cc

Issue 220243007: Mojo: Move mojo/public/bindings/lib to mojo/public/cpp/bindings/lib. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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
« no previous file with comments | « mojo/public/bindings/lib/message_queue.h ('k') | mojo/public/bindings/lib/router.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/bindings/lib/message_queue.cc
diff --git a/mojo/public/bindings/lib/message_queue.cc b/mojo/public/bindings/lib/message_queue.cc
deleted file mode 100644
index ce5e34741bc71a92a236dc16ea7b6013ae2a784b..0000000000000000000000000000000000000000
--- a/mojo/public/bindings/lib/message_queue.cc
+++ /dev/null
@@ -1,50 +0,0 @@
-// Copyright 2013 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 "mojo/public/bindings/lib/message_queue.h"
-
-#include <assert.h>
-#include <stddef.h>
-
-#include "mojo/public/cpp/bindings/message.h"
-
-namespace mojo {
-namespace internal {
-
-MessageQueue::MessageQueue() {
-}
-
-MessageQueue::~MessageQueue() {
- while (!queue_.empty())
- Pop();
-}
-
-bool MessageQueue::IsEmpty() const {
- return queue_.empty();
-}
-
-Message* MessageQueue::Peek() {
- assert(!queue_.empty());
- return queue_.front();
-}
-
-void MessageQueue::Push(Message* message) {
- queue_.push(new Message());
- queue_.back()->Swap(message);
-}
-
-void MessageQueue::Pop(Message* message) {
- assert(!queue_.empty());
- queue_.front()->Swap(message);
- Pop();
-}
-
-void MessageQueue::Pop() {
- assert(!queue_.empty());
- delete queue_.front();
- queue_.pop();
-}
-
-} // namespace internal
-} // namespace mojo
« no previous file with comments | « mojo/public/bindings/lib/message_queue.h ('k') | mojo/public/bindings/lib/router.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698