Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(608)

Side by Side Diff: third_party/WebKit/Source/core/html/HTMLInputElement.h

Issue 2735633004: HTML Media Capture: update capture attribute to use string. (Closed)
Patch Set: Do not propagate String(capture) outside Blink Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/HTMLInputElement.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 void UpdateView(); 238 void UpdateView();
239 bool NeedsToUpdateViewValue() const { return needs_to_update_view_value_; } 239 bool NeedsToUpdateViewValue() const { return needs_to_update_view_value_; }
240 void SetInnerEditorValue(const String&) override; 240 void SetInnerEditorValue(const String&) override;
241 241
242 // For test purposes. 242 // For test purposes.
243 void SelectColorInColorChooser(const Color&); 243 void SelectColorInColorChooser(const Color&);
244 void EndColorChooser(); 244 void EndColorChooser();
245 245
246 String DefaultToolTip() const override; 246 String DefaultToolTip() const override;
247 247
248 CaptureFacingMode capture() const;
249 void setCapture(const AtomicString& value);
250
248 unsigned height() const; 251 unsigned height() const;
249 unsigned width() const; 252 unsigned width() const;
250 void setHeight(unsigned); 253 void setHeight(unsigned);
251 void setWidth(unsigned); 254 void setWidth(unsigned);
252 255
253 void blur() final; 256 void blur() final;
254 void DefaultBlur(); 257 void DefaultBlur();
255 258
256 const AtomicString& GetName() const final; 259 const AtomicString& GetName() const final;
257 260
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 // element lives on. 431 // element lives on.
429 Member<HTMLImageLoader> image_loader_; 432 Member<HTMLImageLoader> image_loader_;
430 Member<ListAttributeTargetObserver> list_attribute_target_observer_; 433 Member<ListAttributeTargetObserver> list_attribute_target_observer_;
431 434
432 FRIEND_TEST_ALL_PREFIXES(HTMLInputElementTest, RadioKeyDownDCHECKFailure); 435 FRIEND_TEST_ALL_PREFIXES(HTMLInputElementTest, RadioKeyDownDCHECKFailure);
433 }; 436 };
434 437
435 } // namespace blink 438 } // namespace blink
436 439
437 #endif // HTMLInputElement_h 440 #endif // HTMLInputElement_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/HTMLInputElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698