Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 6 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 258 void cacheSelectionInResponseToSetValue(int caretOffset) { cacheSelection(ca retOffset, caretOffset, SelectionHasNoDirection); } | 258 void cacheSelectionInResponseToSetValue(int caretOffset) { cacheSelection(ca retOffset, caretOffset, SelectionHasNoDirection); } |
| 259 | 259 |
| 260 #if ENABLE(INPUT_TYPE_COLOR) | 260 #if ENABLE(INPUT_TYPE_COLOR) |
| 261 // For test purposes. | 261 // For test purposes. |
| 262 void selectColorInColorChooser(const Color&); | 262 void selectColorInColorChooser(const Color&); |
| 263 #endif | 263 #endif |
| 264 | 264 |
| 265 String defaultToolTip() const; | 265 String defaultToolTip() const; |
| 266 | 266 |
| 267 #if ENABLE(MEDIA_CAPTURE) | 267 #if ENABLE(MEDIA_CAPTURE) |
| 268 String capture() const; | 268 bool isCaptureEnabled() const; |
|
benm (inactive)
2013/05/23 13:24:33
why rename the method?
| |
| 269 void setCapture(const String& value); | |
| 270 #endif | 269 #endif |
| 271 | 270 |
| 272 static const int maximumLength; | 271 static const int maximumLength; |
| 273 | 272 |
| 274 unsigned height() const; | 273 unsigned height() const; |
| 275 unsigned width() const; | 274 unsigned width() const; |
| 276 void setHeight(unsigned); | 275 void setHeight(unsigned); |
| 277 void setWidth(unsigned); | 276 void setWidth(unsigned); |
| 278 | 277 |
| 279 virtual void blur() OVERRIDE; | 278 virtual void blur() OVERRIDE; |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 423 // that it lives as long as its owning element lives. If we move the loader into | 422 // that it lives as long as its owning element lives. If we move the loader into |
| 424 // the ImageInput object we may delete the loader while this element lives o n. | 423 // the ImageInput object we may delete the loader while this element lives o n. |
| 425 OwnPtr<HTMLImageLoader> m_imageLoader; | 424 OwnPtr<HTMLImageLoader> m_imageLoader; |
| 426 #if ENABLE(DATALIST_ELEMENT) | 425 #if ENABLE(DATALIST_ELEMENT) |
| 427 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; | 426 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; |
| 428 #endif | 427 #endif |
| 429 }; | 428 }; |
| 430 | 429 |
| 431 } //namespace | 430 } //namespace |
| 432 #endif | 431 #endif |
| OLD | NEW |