OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "chrome/browser/ui/views/tab_contents/native_tab_contents_view_aura.h" | 5 #include "chrome/browser/ui/views/tab_contents/native_tab_contents_view_aura.h" |
6 | 6 |
7 #include "chrome/browser/tab_contents/web_drop_target_win.h" | 7 #include "chrome/browser/tab_contents/web_drop_target_win.h" |
8 #include "chrome/browser/ui/views/tab_contents/native_tab_contents_view_delegate
.h" | 8 #include "chrome/browser/ui/views/tab_contents/native_tab_contents_view_delegate
.h" |
9 #include "chrome/browser/ui/views/tab_contents/native_tab_contents_view_views.h" | 9 #include "chrome/browser/ui/views/tab_contents/native_tab_contents_view_views.h" |
10 #include "chrome/browser/renderer_host/render_widget_host_view_views.h" | 10 #include "chrome/browser/renderer_host/render_widget_host_view_views.h" |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 NOTIMPLEMENTED(); | 60 NOTIMPLEMENTED(); |
61 return NULL; | 61 return NULL; |
62 } | 62 } |
63 | 63 |
64 gfx::NativeWindow NativeTabContentsViewAura::GetTopLevelNativeWindow() const { | 64 gfx::NativeWindow NativeTabContentsViewAura::GetTopLevelNativeWindow() const { |
65 // TODO(beng): | 65 // TODO(beng): |
66 NOTIMPLEMENTED(); | 66 NOTIMPLEMENTED(); |
67 return NULL; | 67 return NULL; |
68 } | 68 } |
69 | 69 |
70 void NativeTabContentsViewAura::SetPageTitle(const std::wstring& title) { | 70 void NativeTabContentsViewAura::SetPageTitle(const string16& title) { |
71 // TODO(beng): | 71 // TODO(beng): |
72 NOTIMPLEMENTED(); | 72 NOTIMPLEMENTED(); |
73 } | 73 } |
74 | 74 |
75 void NativeTabContentsViewAura::StartDragging(const WebDropData& drop_data, | 75 void NativeTabContentsViewAura::StartDragging(const WebDropData& drop_data, |
76 WebKit::WebDragOperationsMask ops, | 76 WebKit::WebDragOperationsMask ops, |
77 const SkBitmap& image, | 77 const SkBitmap& image, |
78 const gfx::Point& image_offset) { | 78 const gfx::Point& image_offset) { |
79 // TODO(beng): | 79 // TODO(beng): |
80 NOTIMPLEMENTED(); | 80 NOTIMPLEMENTED(); |
(...skipping 25 matching lines...) Expand all Loading... |
106 | 106 |
107 //////////////////////////////////////////////////////////////////////////////// | 107 //////////////////////////////////////////////////////////////////////////////// |
108 // NativeTabContentsView, public: | 108 // NativeTabContentsView, public: |
109 | 109 |
110 // static | 110 // static |
111 NativeTabContentsView* NativeTabContentsView::CreateNativeTabContentsView( | 111 NativeTabContentsView* NativeTabContentsView::CreateNativeTabContentsView( |
112 internal::NativeTabContentsViewDelegate* delegate) { | 112 internal::NativeTabContentsViewDelegate* delegate) { |
113 return new NativeTabContentsViewViews(delegate); | 113 return new NativeTabContentsViewViews(delegate); |
114 // return new NativeTabContentsViewAura(delegate); | 114 // return new NativeTabContentsViewAura(delegate); |
115 } | 115 } |
OLD | NEW |