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

Side by Side Diff: components/exo/surface.h

Issue 2896943002: Add "stylus-tools" Wayland protocol. (Closed)
Patch Set: Moved the property out of aura Created 3 years, 6 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #ifndef COMPONENTS_EXO_SURFACE_H_ 5 #ifndef COMPONENTS_EXO_SURFACE_H_
6 #define COMPONENTS_EXO_SURFACE_H_ 6 #define COMPONENTS_EXO_SURFACE_H_
7 7
8 #include <list> 8 #include <list>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 // Called when the begin frame source has changed. 193 // Called when the begin frame source has changed.
194 void SetBeginFrameSource(cc::BeginFrameSource* begin_frame_source); 194 void SetBeginFrameSource(cc::BeginFrameSource* begin_frame_source);
195 195
196 // Check whether this Surface and its children need to create new cc::Surface 196 // Check whether this Surface and its children need to create new cc::Surface
197 // IDs for their contents next time they get new buffer contents. 197 // IDs for their contents next time they get new buffer contents.
198 void CheckIfSurfaceHierarchyNeedsCommitToNewSurfaces(); 198 void CheckIfSurfaceHierarchyNeedsCommitToNewSurfaces();
199 199
200 // Returns the active contents size. 200 // Returns the active contents size.
201 gfx::Size content_size() const { return content_size_; } 201 gfx::Size content_size() const { return content_size_; }
202 202
203 // Returns true if the associated window is in 'stylus-only' mode.
204 bool IsStylusOnly();
205
206 // Enables 'stylus-only' mode for the associated window.
207 void SetStylusOnly();
208
203 // Overridden from ui::ContextFactoryObserver: 209 // Overridden from ui::ContextFactoryObserver:
204 void OnLostResources() override; 210 void OnLostResources() override;
205 211
206 // Overridden from aura::WindowObserver: 212 // Overridden from aura::WindowObserver:
207 void OnWindowAddedToRootWindow(aura::Window* window) override; 213 void OnWindowAddedToRootWindow(aura::Window* window) override;
208 void OnWindowRemovingFromRootWindow(aura::Window* window, 214 void OnWindowRemovingFromRootWindow(aura::Window* window,
209 aura::Window* new_root) override; 215 aura::Window* new_root) override;
210 216
211 // Overridden from ui::CompositorVSyncManager::Observer: 217 // Overridden from ui::CompositorVSyncManager::Observer:
212 void OnUpdateVSyncParameters(base::TimeTicks timebase, 218 void OnUpdateVSyncParameters(base::TimeTicks timebase,
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 cc::BeginFrameSource* begin_frame_source_ = nullptr; 392 cc::BeginFrameSource* begin_frame_source_ = nullptr;
387 bool needs_begin_frame_ = false; 393 bool needs_begin_frame_ = false;
388 cc::BeginFrameAck current_begin_frame_ack_; 394 cc::BeginFrameAck current_begin_frame_ack_;
389 395
390 DISALLOW_COPY_AND_ASSIGN(Surface); 396 DISALLOW_COPY_AND_ASSIGN(Surface);
391 }; 397 };
392 398
393 } // namespace exo 399 } // namespace exo
394 400
395 #endif // COMPONENTS_EXO_SURFACE_H_ 401 #endif // COMPONENTS_EXO_SURFACE_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/arc/voice_interaction/arc_voice_interaction_framework_service.cc ('k') | components/exo/surface.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698