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

Side by Side Diff: Source/WebCore/html/HTMLInputElement.cpp

Issue 13497009: Remove ENABLE(FILE_SYSTEM) compile-time flag. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: added CodeGeneratorInspector.py change Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « Source/WebCore/html/HTMLInputElement.h ('k') | Source/WebCore/html/InputType.h » ('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) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com)
7 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) 7 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org)
8 * Copyright (C) 2010 Google Inc. All rights reserved. 8 * Copyright (C) 2010 Google Inc. All rights reserved.
9 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 9 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
10 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 10 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
(...skipping 1349 matching lines...) Expand 10 before | Expand all | Expand 10 after
1360 void HTMLInputElement::setFiles(PassRefPtr<FileList> files) 1360 void HTMLInputElement::setFiles(PassRefPtr<FileList> files)
1361 { 1361 {
1362 m_inputType->setFiles(files); 1362 m_inputType->setFiles(files);
1363 } 1363 }
1364 1364
1365 bool HTMLInputElement::receiveDroppedFiles(const DragData* dragData) 1365 bool HTMLInputElement::receiveDroppedFiles(const DragData* dragData)
1366 { 1366 {
1367 return m_inputType->receiveDroppedFiles(dragData); 1367 return m_inputType->receiveDroppedFiles(dragData);
1368 } 1368 }
1369 1369
1370 #if ENABLE(FILE_SYSTEM)
1371 String HTMLInputElement::droppedFileSystemId() 1370 String HTMLInputElement::droppedFileSystemId()
1372 { 1371 {
1373 return m_inputType->droppedFileSystemId(); 1372 return m_inputType->droppedFileSystemId();
1374 } 1373 }
1375 #endif
1376 1374
1377 Icon* HTMLInputElement::icon() const 1375 Icon* HTMLInputElement::icon() const
1378 { 1376 {
1379 return m_inputType->icon(); 1377 return m_inputType->icon();
1380 } 1378 }
1381 1379
1382 bool HTMLInputElement::canReceiveDroppedFiles() const 1380 bool HTMLInputElement::canReceiveDroppedFiles() const
1383 { 1381 {
1384 return m_canReceiveDroppedFiles; 1382 return m_canReceiveDroppedFiles;
1385 } 1383 }
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after
1980 } 1978 }
1981 1979
1982 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) 1980 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI)
1983 PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer() 1981 PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer()
1984 { 1982 {
1985 return m_inputType->customStyleForRenderer(document()->styleResolver()->styl eForElement(this)); 1983 return m_inputType->customStyleForRenderer(document()->styleResolver()->styl eForElement(this));
1986 } 1984 }
1987 #endif 1985 #endif
1988 1986
1989 } // namespace 1987 } // namespace
OLDNEW
« no previous file with comments | « Source/WebCore/html/HTMLInputElement.h ('k') | Source/WebCore/html/InputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698