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

Side by Side Diff: views/controls/native/native_view_host_win.h

Issue 510004: Fix crash/leak issue in native_view_host_gtk.cc. (Closed)
Patch Set: " Created 10 years, 12 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 (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 VIEWS_CONTROLS_HWND_VIEW_H_ 5 #ifndef VIEWS_CONTROLS_HWND_VIEW_H_
6 #define VIEWS_CONTROLS_HWND_VIEW_H_ 6 #define VIEWS_CONTROLS_HWND_VIEW_H_
7 7
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "views/controls/native/native_view_host_wrapper.h" 9 #include "views/controls/native/native_view_host_wrapper.h"
10 10
11 namespace views { 11 namespace views {
12 12
13 class NativeViewHost; 13 class NativeViewHost;
14 14
15 // A Windows implementation of NativeViewHostWrapper 15 // A Windows implementation of NativeViewHostWrapper
16 class NativeViewHostWin : public NativeViewHostWrapper { 16 class NativeViewHostWin : public NativeViewHostWrapper {
17 public: 17 public:
18 explicit NativeViewHostWin(NativeViewHost* host); 18 explicit NativeViewHostWin(NativeViewHost* host);
19 virtual ~NativeViewHostWin(); 19 virtual ~NativeViewHostWin();
20 20
21 // Overridden from NativeViewHostWrapper: 21 // Overridden from NativeViewHostWrapper:
22 virtual void NativeViewAttached(); 22 virtual void NativeViewAttached();
23 virtual void NativeViewDetaching(); 23 virtual void NativeViewDetaching(bool destroyed);
24 virtual void AddedToWidget(); 24 virtual void AddedToWidget();
25 virtual void RemovedFromWidget(); 25 virtual void RemovedFromWidget();
26 virtual void InstallClip(int x, int y, int w, int h); 26 virtual void InstallClip(int x, int y, int w, int h);
27 virtual bool HasInstalledClip(); 27 virtual bool HasInstalledClip();
28 virtual void UninstallClip(); 28 virtual void UninstallClip();
29 virtual void ShowWidget(int x, int y, int w, int h); 29 virtual void ShowWidget(int x, int y, int w, int h);
30 virtual void HideWidget(); 30 virtual void HideWidget();
31 virtual void SetFocus(); 31 virtual void SetFocus();
32 32
33 private: 33 private:
34 // Our associated NativeViewHost. 34 // Our associated NativeViewHost.
35 NativeViewHost* host_; 35 NativeViewHost* host_;
36 36
37 // Have we installed a region on the gfx::NativeView used to clip to only the 37 // Have we installed a region on the gfx::NativeView used to clip to only the
38 // visible portion of the gfx::NativeView ? 38 // visible portion of the gfx::NativeView ?
39 bool installed_clip_; 39 bool installed_clip_;
40 40
41 DISALLOW_COPY_AND_ASSIGN(NativeViewHostWin); 41 DISALLOW_COPY_AND_ASSIGN(NativeViewHostWin);
42 }; 42 };
43 43
44 } // namespace views 44 } // namespace views
45 45
46 #endif // VIEWS_CONTROLS_HWND_VIEW_H_ 46 #endif // VIEWS_CONTROLS_HWND_VIEW_H_
OLDNEW
« no previous file with comments | « views/controls/native/native_view_host_gtk.cc ('k') | views/controls/native/native_view_host_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698