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

Side by Side Diff: ui/views/test/test_views_delegate.h

Issue 10913237: Allow the Views Delegate to provide the native widget. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 3 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
« no previous file with comments | « ui/views/examples/examples_window_with_content.cc ('k') | ui/views/test/test_views_delegate.cc » ('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 (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 UI_VIEWS_TEST_TEST_VIEWS_DELEGATE_H_ 5 #ifndef UI_VIEWS_TEST_TEST_VIEWS_DELEGATE_H_
6 #define UI_VIEWS_TEST_TEST_VIEWS_DELEGATE_H_ 6 #define UI_VIEWS_TEST_TEST_VIEWS_DELEGATE_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 #if defined(OS_WIN) 48 #if defined(OS_WIN)
49 virtual HICON GetDefaultWindowIcon() const OVERRIDE { 49 virtual HICON GetDefaultWindowIcon() const OVERRIDE {
50 return NULL; 50 return NULL;
51 } 51 }
52 #endif 52 #endif
53 virtual NonClientFrameView* CreateDefaultNonClientFrameView( 53 virtual NonClientFrameView* CreateDefaultNonClientFrameView(
54 Widget* widget) OVERRIDE; 54 Widget* widget) OVERRIDE;
55 virtual bool UseTransparentWindows() const OVERRIDE; 55 virtual bool UseTransparentWindows() const OVERRIDE;
56 virtual void AddRef() OVERRIDE {} 56 virtual void AddRef() OVERRIDE {}
57 virtual void ReleaseRef() OVERRIDE {} 57 virtual void ReleaseRef() OVERRIDE {}
58
59 virtual int GetDispositionForEvent(int event_flags) OVERRIDE; 58 virtual int GetDispositionForEvent(int event_flags) OVERRIDE;
60
61 #if defined(USE_AURA) 59 #if defined(USE_AURA)
62 virtual views::NativeWidgetHelperAura* CreateNativeWidgetHelper( 60 virtual views::NativeWidgetHelperAura* CreateNativeWidgetHelper(
63 views::NativeWidgetAura* native_widget) OVERRIDE; 61 views::NativeWidgetAura* native_widget) OVERRIDE;
64 #endif 62 #endif
65
66 virtual content::WebContents* CreateWebContents( 63 virtual content::WebContents* CreateWebContents(
67 content::BrowserContext* browser_context, 64 content::BrowserContext* browser_context,
68 content::SiteInstance* site_instance) OVERRIDE; 65 content::SiteInstance* site_instance) OVERRIDE;
66 virtual NativeWidget* CreateNativeWidget(
67 internal::NativeWidgetDelegate* delegate,
68 gfx::NativeView parent) OVERRIDE;
69 69
70 private: 70 private:
71 bool use_transparent_windows_; 71 bool use_transparent_windows_;
72 72
73 DISALLOW_COPY_AND_ASSIGN(TestViewsDelegate); 73 DISALLOW_COPY_AND_ASSIGN(TestViewsDelegate);
74 }; 74 };
75 75
76 } // namespace views 76 } // namespace views
77 77
78 #endif // UI_VIEWS_TEST_TEST_VIEWS_DELEGATE_H_ 78 #endif // UI_VIEWS_TEST_TEST_VIEWS_DELEGATE_H_
OLDNEW
« no previous file with comments | « ui/views/examples/examples_window_with_content.cc ('k') | ui/views/test/test_views_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698