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

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

Issue 23913008: C++ bindings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix use of size_t Created 7 years, 2 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: mojo/public/bindings/lib/message.cc
diff --git a/ui/base/cocoa/flipped_view.mm b/mojo/public/bindings/lib/message.cc
similarity index 56%
copy from ui/base/cocoa/flipped_view.mm
copy to mojo/public/bindings/lib/message.cc
index 57c16477a94b7b30f709bc71abbe10fe009b4ee8..8a59537daeb77e621fc7209546996b5ddbb3ba12 100644
--- a/ui/base/cocoa/flipped_view.mm
+++ b/mojo/public/bindings/lib/message.cc
@@ -2,12 +2,14 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#import "ui/base/cocoa/flipped_view.h"
+#include "mojo/public/bindings/lib/message.h"
-@implementation FlippedView
+namespace mojo {
-- (BOOL)isFlipped {
- return YES;
+Message::Message() {
}
-@end
+Message::~Message() {
+}
+
+} // namespace mojo

Powered by Google App Engine
This is Rietveld 408576698