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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_aura.h

Issue 126513004: Rename RootWindowHost to WindowTreeHost (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 11 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 aura::Window* lost_activation) OVERRIDE; 328 aura::Window* lost_activation) OVERRIDE;
329 329
330 // Overridden from aura::client::CursorClientObserver: 330 // Overridden from aura::client::CursorClientObserver:
331 virtual void OnCursorVisibilityChanged(bool is_visible) OVERRIDE; 331 virtual void OnCursorVisibilityChanged(bool is_visible) OVERRIDE;
332 332
333 // Overridden from aura::client::FocusChangeObserver: 333 // Overridden from aura::client::FocusChangeObserver:
334 virtual void OnWindowFocused(aura::Window* gained_focus, 334 virtual void OnWindowFocused(aura::Window* gained_focus,
335 aura::Window* lost_focus) OVERRIDE; 335 aura::Window* lost_focus) OVERRIDE;
336 336
337 // Overridden from aura::RootWindowObserver: 337 // Overridden from aura::RootWindowObserver:
338 virtual void OnRootWindowHostMoved(const aura::RootWindow* root, 338 virtual void OnWindowTreeHostMoved(const aura::RootWindow* root,
339 const gfx::Point& new_origin) OVERRIDE; 339 const gfx::Point& new_origin) OVERRIDE;
340 340
341 // SoftwareFrameManagerClient implementation: 341 // SoftwareFrameManagerClient implementation:
342 virtual void SoftwareFrameWasFreed( 342 virtual void SoftwareFrameWasFreed(
343 uint32 output_surface_id, unsigned frame_id) OVERRIDE; 343 uint32 output_surface_id, unsigned frame_id) OVERRIDE;
344 virtual void ReleaseReferencesToSoftwareFrame() OVERRIDE; 344 virtual void ReleaseReferencesToSoftwareFrame() OVERRIDE;
345 345
346 bool CanCopyToBitmap() const; 346 bool CanCopyToBitmap() const;
347 347
348 #if defined(OS_WIN) 348 #if defined(OS_WIN)
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after
792 // passed to windowless plugins like Flash/Silverlight, etc as the 792 // passed to windowless plugins like Flash/Silverlight, etc as the
793 // container window. 793 // container window.
794 HWND plugin_parent_window_; 794 HWND plugin_parent_window_;
795 #endif 795 #endif
796 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); 796 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura);
797 }; 797 };
798 798
799 } // namespace content 799 } // namespace content
800 800
801 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 801 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698