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

Unified Diff: mojo/services/public/cpp/surfaces/lib/surfaces_utils.cc

Issue 640893003: Move mojo/services/public/cpp TypeConverters to mojo/converters. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Restore the directory and component structures and target names. Created 6 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/services/public/cpp/surfaces/lib/surfaces_utils.cc
diff --git a/mojo/services/public/cpp/surfaces/lib/surfaces_utils.cc b/mojo/services/public/cpp/surfaces/lib/surfaces_utils.cc
deleted file mode 100644
index c35a77a3cd1ba490b617f8bbf35419f10ae6ea6b..0000000000000000000000000000000000000000
--- a/mojo/services/public/cpp/surfaces/lib/surfaces_utils.cc
+++ /dev/null
@@ -1,37 +0,0 @@
-// 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/public/cpp/surfaces/surfaces_utils.h"
-
-#include "mojo/services/public/cpp/geometry/geometry_type_converters.h"
-#include "ui/gfx/geometry/rect.h"
-#include "ui/gfx/geometry/size.h"
-#include "ui/gfx/transform.h"
-
-namespace mojo {
-
-SharedQuadStatePtr CreateDefaultSQS(const gfx::Size& size) {
- SharedQuadStatePtr sqs = SharedQuadState::New();
- sqs->content_to_target_transform = Transform::From(gfx::Transform());
- sqs->content_bounds = Size::From(size);
- sqs->visible_content_rect = Rect::From(gfx::Rect(size));
- sqs->clip_rect = Rect::From(gfx::Rect(size));
- sqs->is_clipped = false;
- sqs->opacity = 1.f;
- sqs->blend_mode = mojo::SK_XFERMODE_kSrc_Mode;
- sqs->sorting_context_id = 0;
- return sqs.Pass();
-}
-
-PassPtr CreateDefaultPass(int id, const gfx::Rect& rect) {
- PassPtr pass = Pass::New();
- pass->id = id;
- pass->output_rect = Rect::From(rect);
- pass->damage_rect = Rect::From(rect);
- pass->transform_to_root_target = Transform::From(gfx::Transform());
- pass->has_transparent_background = false;
- return pass.Pass();
-}
-
-} // namespace mojo

Powered by Google App Engine
This is Rietveld 408576698