| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 #include "core/events/MouseEvent.h" | 38 #include "core/events/MouseEvent.h" |
| 39 #include "core/events/ScopedEventQueue.h" | 39 #include "core/events/ScopedEventQueue.h" |
| 40 #include "core/frame/FrameView.h" | 40 #include "core/frame/FrameView.h" |
| 41 #include "core/html/HTMLDataListElement.h" | 41 #include "core/html/HTMLDataListElement.h" |
| 42 #include "core/html/HTMLDataListOptionsCollection.h" | 42 #include "core/html/HTMLDataListOptionsCollection.h" |
| 43 #include "core/html/HTMLDivElement.h" | 43 #include "core/html/HTMLDivElement.h" |
| 44 #include "core/html/HTMLInputElement.h" | 44 #include "core/html/HTMLInputElement.h" |
| 45 #include "core/html/HTMLOptionElement.h" | 45 #include "core/html/HTMLOptionElement.h" |
| 46 #include "core/html/forms/ColorChooser.h" | 46 #include "core/html/forms/ColorChooser.h" |
| 47 #include "core/layout/LayoutTheme.h" | 47 #include "core/layout/LayoutTheme.h" |
| 48 #include "core/layout/LayoutView.h" | |
| 49 #include "core/page/ChromeClient.h" | 48 #include "core/page/ChromeClient.h" |
| 50 #include "platform/RuntimeEnabledFeatures.h" | 49 #include "platform/RuntimeEnabledFeatures.h" |
| 51 #include "platform/UserGestureIndicator.h" | 50 #include "platform/UserGestureIndicator.h" |
| 52 #include "platform/graphics/Color.h" | 51 #include "platform/graphics/Color.h" |
| 53 #include "wtf/PassOwnPtr.h" | 52 #include "wtf/PassOwnPtr.h" |
| 54 #include "wtf/text/WTFString.h" | 53 #include "wtf/text/WTFString.h" |
| 55 | 54 |
| 56 namespace blink { | 55 namespace blink { |
| 57 | 56 |
| 58 using namespace HTMLNames; | 57 using namespace HTMLNames; |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 { | 293 { |
| 295 return m_chooser ? m_chooser->rootAXObject() : nullptr; | 294 return m_chooser ? m_chooser->rootAXObject() : nullptr; |
| 296 } | 295 } |
| 297 | 296 |
| 298 ColorChooserClient* ColorInputType::colorChooserClient() | 297 ColorChooserClient* ColorInputType::colorChooserClient() |
| 299 { | 298 { |
| 300 return this; | 299 return this; |
| 301 } | 300 } |
| 302 | 301 |
| 303 } // namespace blink | 302 } // namespace blink |
| OLD | NEW |