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

Unified Diff: mojo/services/view_manager/test_server_view_delegate.cc

Issue 1049993002: Get mojo_shell building inside chromium checkout. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix presubmit Created 5 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
Index: mojo/services/view_manager/test_server_view_delegate.cc
diff --git a/mojo/services/view_manager/test_server_view_delegate.cc b/mojo/services/view_manager/test_server_view_delegate.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c7b8a971fed1a9228605666107cc6de274613d4a
--- /dev/null
+++ b/mojo/services/view_manager/test_server_view_delegate.cc
@@ -0,0 +1,57 @@
+// Copyright 2014 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/services/view_manager/test_server_view_delegate.h"
+
+namespace view_manager {
+
+TestServerViewDelegate::TestServerViewDelegate() {
+}
+
+TestServerViewDelegate::~TestServerViewDelegate() {
+}
+
+void TestServerViewDelegate::OnWillDestroyView(ServerView* view) {
+}
+
+void TestServerViewDelegate::OnViewDestroyed(const ServerView* view) {
+}
+
+void TestServerViewDelegate::OnWillChangeViewHierarchy(ServerView* view,
+ ServerView* new_parent,
+ ServerView* old_parent) {
+}
+
+void TestServerViewDelegate::OnViewHierarchyChanged(
+ const ServerView* view,
+ const ServerView* new_parent,
+ const ServerView* old_parent) {
+}
+
+void TestServerViewDelegate::OnViewBoundsChanged(const ServerView* view,
+ const gfx::Rect& old_bounds,
+ const gfx::Rect& new_bounds) {
+}
+
+void TestServerViewDelegate::OnViewSurfaceIdChanged(const ServerView* view) {
+}
+
+void TestServerViewDelegate::OnViewReordered(const ServerView* view,
+ const ServerView* relative,
+ mojo::OrderDirection direction) {
+}
+
+void TestServerViewDelegate::OnWillChangeViewVisibility(ServerView* view) {
+}
+
+void TestServerViewDelegate::OnViewSharedPropertyChanged(
+ const ServerView* view,
+ const std::string& name,
+ const std::vector<uint8_t>* new_data) {
+}
+
+void TestServerViewDelegate::OnScheduleViewPaint(const ServerView* view) {
+}
+
+} // namespace view_manager
« no previous file with comments | « mojo/services/view_manager/test_server_view_delegate.h ('k') | mojo/services/view_manager/view_coordinate_conversions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698