| 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/keyboard_overlay_delegate.h" | 5 #include "chrome/browser/ui/views/keyboard_overlay_delegate.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/utf_string_conversions.h" | 10 #include "base/utf_string_conversions.h" |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 | 74 |
| 75 void KeyboardOverlayDelegate::OnCloseContents(WebContents* source, | 75 void KeyboardOverlayDelegate::OnCloseContents(WebContents* source, |
| 76 bool* out_close_dialog) { | 76 bool* out_close_dialog) { |
| 77 } | 77 } |
| 78 | 78 |
| 79 bool KeyboardOverlayDelegate::ShouldShowDialogTitle() const { | 79 bool KeyboardOverlayDelegate::ShouldShowDialogTitle() const { |
| 80 return false; | 80 return false; |
| 81 } | 81 } |
| 82 | 82 |
| 83 bool KeyboardOverlayDelegate::HandleContextMenu( | 83 bool KeyboardOverlayDelegate::HandleContextMenu( |
| 84 const ContextMenuParams& params) { | 84 const content::ContextMenuParams& params) { |
| 85 return true; | 85 return true; |
| 86 } | 86 } |
| OLD | NEW |