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

Side by Side Diff: services/ui/demo/mus_demo.cc

Issue 2184943002: services/ui: Move some files into the client lib. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@chrome-gpu-in-mus-windows
Patch Set: . Created 4 years, 4 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 unified diff | Download patch
« no previous file with comments | « services/ui/common/mojo_gpu_memory_buffer_manager.cc ('k') | services/ui/public/cpp/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "services/ui/demo/mus_demo.h" 5 #include "services/ui/demo/mus_demo.h"
6 6
7 #include "base/time/time.h" 7 #include "base/time/time.h"
8 #include "services/shell/public/cpp/connector.h" 8 #include "services/shell/public/cpp/connector.h"
9 #include "services/ui/common/gpu_service.h"
10 #include "services/ui/public/cpp/bitmap_uploader.h" 9 #include "services/ui/public/cpp/bitmap_uploader.h"
10 #include "services/ui/public/cpp/gpu_service.h"
11 #include "services/ui/public/cpp/window.h" 11 #include "services/ui/public/cpp/window.h"
12 #include "services/ui/public/cpp/window_tree_client.h" 12 #include "services/ui/public/cpp/window_tree_client.h"
13 #include "third_party/skia/include/core/SkCanvas.h" 13 #include "third_party/skia/include/core/SkCanvas.h"
14 #include "third_party/skia/include/core/SkColor.h" 14 #include "third_party/skia/include/core/SkColor.h"
15 #include "third_party/skia/include/core/SkImageInfo.h" 15 #include "third_party/skia/include/core/SkImageInfo.h"
16 #include "third_party/skia/include/core/SkPaint.h" 16 #include "third_party/skia/include/core/SkPaint.h"
17 #include "third_party/skia/include/core/SkRect.h" 17 #include "third_party/skia/include/core/SkRect.h"
18 #include "ui/gfx/geometry/rect.h" 18 #include "ui/gfx/geometry/rect.h"
19 19
20 namespace ui { 20 namespace ui {
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 new std::vector<unsigned char>(addr, addr + bytes)); 175 new std::vector<unsigned char>(addr, addr + bytes));
176 bitmap_.unlockPixels(); 176 bitmap_.unlockPixels();
177 177
178 // Send frame to MUS via BitmapUploader. 178 // Send frame to MUS via BitmapUploader.
179 uploader_->SetBitmap(bounds.width(), bounds.height(), std::move(data), 179 uploader_->SetBitmap(bounds.width(), bounds.height(), std::move(data),
180 ui::BitmapUploader::BGRA); 180 ui::BitmapUploader::BGRA);
181 } 181 }
182 182
183 } // namespace demo 183 } // namespace demo
184 } // namespace ui 184 } // namespace ui
OLDNEW
« no previous file with comments | « services/ui/common/mojo_gpu_memory_buffer_manager.cc ('k') | services/ui/public/cpp/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698