| OLD | NEW |
| 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 #include "chrome/browser/ui/views/chrome_views_delegate.h" | 5 #include "chrome/browser/ui/views/chrome_views_delegate.h" |
| 6 | 6 |
| 7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
| 8 #include "base/string_util.h" | 8 #include "base/string_util.h" |
| 9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
| 10 #include "chrome/browser/browser_process.h" | 10 #include "chrome/browser/browser_process.h" |
| 11 #include "chrome/browser/prefs/pref_service.h" | 11 #include "chrome/browser/prefs/pref_service.h" |
| 12 #include "chrome/browser/prefs/scoped_user_pref_update.h" | 12 #include "chrome/browser/prefs/scoped_user_pref_update.h" |
| 13 #include "chrome/browser/profiles/profile_manager.h" | 13 #include "chrome/browser/profiles/profile_manager.h" |
| 14 #include "chrome/browser/ui/views/accessibility_event_router_views.h" | 14 #include "chrome/browser/ui/views/accessibility_event_router_views.h" |
| 15 #include "chrome/browser/ui/views/event_utils.h" | 15 #include "chrome/browser/ui/views/event_utils.h" |
| 16 #include "chrome/common/pref_names.h" | 16 #include "chrome/common/pref_names.h" |
| 17 #include "ui/base/clipboard/clipboard.h" | 17 #include "ui/base/clipboard/clipboard.h" |
| 18 #include "ui/gfx/rect.h" | 18 #include "ui/gfx/rect.h" |
| 19 #include "ui/gfx/screen.h" | 19 #include "ui/gfx/screen.h" |
| 20 #include "ui/views/widget/native_widget.h" | 20 #include "ui/views/widget/native_widget.h" |
| 21 #include "ui/views/widget/widget.h" | 21 #include "ui/views/widget/widget.h" |
| 22 | 22 |
| 23 #if defined(OS_WIN) | 23 #if defined(OS_WIN) |
| 24 #include "chrome/browser/app_icon_win.h" | 24 #include "chrome/browser/app_icon_win.h" |
| 25 #endif | 25 #endif |
| 26 | 26 |
| 27 #if defined(USE_ASH) | 27 #if defined(USE_ASH) |
| 28 #include "ash/shell.h" | 28 #include "ash/shell.h" |
| 29 #elif defined(USE_AURA) |
| 30 #include "ui/views/widget/desktop_native_widget_helper_aura.h" |
| 29 #endif | 31 #endif |
| 30 | 32 |
| 31 namespace { | 33 namespace { |
| 32 | 34 |
| 33 // If the given window has a profile associated with it, use that profile's | 35 // If the given window has a profile associated with it, use that profile's |
| 34 // preference service. Otherwise, store and retrieve the data from Local State. | 36 // preference service. Otherwise, store and retrieve the data from Local State. |
| 35 // This function may return NULL if the necessary pref service has not yet | 37 // This function may return NULL if the necessary pref service has not yet |
| 36 // been initialized. | 38 // been initialized. |
| 37 // TODO(mirandac): This function will also separate windows by profile in a | 39 // TODO(mirandac): This function will also separate windows by profile in a |
| 38 // multi-profile environment. | 40 // multi-profile environment. |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 g_browser_process->AddRefModule(); | 152 g_browser_process->AddRefModule(); |
| 151 } | 153 } |
| 152 | 154 |
| 153 void ChromeViewsDelegate::ReleaseRef() { | 155 void ChromeViewsDelegate::ReleaseRef() { |
| 154 g_browser_process->ReleaseModule(); | 156 g_browser_process->ReleaseModule(); |
| 155 } | 157 } |
| 156 | 158 |
| 157 int ChromeViewsDelegate::GetDispositionForEvent(int event_flags) { | 159 int ChromeViewsDelegate::GetDispositionForEvent(int event_flags) { |
| 158 return event_utils::DispositionFromEventFlags(event_flags); | 160 return event_utils::DispositionFromEventFlags(event_flags); |
| 159 } | 161 } |
| 162 |
| 163 #if defined(USE_AURA) |
| 164 views::NativeWidgetHelperAura* ChromeViewsDelegate::CreateNativeWidgetHelper( |
| 165 views::NativeWidgetAura* native_widget) { |
| 166 #if !defined(USE_ASH) |
| 167 return new views::DesktopNativeWidgetHelperAura(native_widget); |
| 168 #else |
| 169 return NULL; |
| 170 #endif |
| 171 } |
| 172 #endif |
| OLD | NEW |