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/bind.h" | 9 #include "base/bind.h" |
10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 } | 136 } |
137 | 137 |
138 bool KeyboardOverlayDelegate::ShouldShowDialogTitle() const { | 138 bool KeyboardOverlayDelegate::ShouldShowDialogTitle() const { |
139 return false; | 139 return false; |
140 } | 140 } |
141 | 141 |
142 bool KeyboardOverlayDelegate::HandleContextMenu( | 142 bool KeyboardOverlayDelegate::HandleContextMenu( |
143 const content::ContextMenuParams& params) { | 143 const content::ContextMenuParams& params) { |
144 return true; | 144 return true; |
145 } | 145 } |
OLD | NEW |