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

Side by Side Diff: Source/web/ChromeClientImpl.cpp

Issue 642383002: Only include NotImplemented.h when it is actually used (when notImplemented() is called). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 #include "core/loader/FrameLoadRequest.h" 53 #include "core/loader/FrameLoadRequest.h"
54 #include "core/page/Page.h" 54 #include "core/page/Page.h"
55 #include "core/page/PagePopupDriver.h" 55 #include "core/page/PagePopupDriver.h"
56 #include "core/page/WindowFeatures.h" 56 #include "core/page/WindowFeatures.h"
57 #include "core/rendering/HitTestResult.h" 57 #include "core/rendering/HitTestResult.h"
58 #include "core/rendering/RenderPart.h" 58 #include "core/rendering/RenderPart.h"
59 #include "core/rendering/RenderWidget.h" 59 #include "core/rendering/RenderWidget.h"
60 #include "core/rendering/compositing/CompositedSelectionBound.h" 60 #include "core/rendering/compositing/CompositedSelectionBound.h"
61 #include "platform/Cursor.h" 61 #include "platform/Cursor.h"
62 #include "platform/FileChooser.h" 62 #include "platform/FileChooser.h"
63 #include "platform/NotImplemented.h"
64 #include "platform/PlatformScreen.h" 63 #include "platform/PlatformScreen.h"
65 #include "platform/RuntimeEnabledFeatures.h" 64 #include "platform/RuntimeEnabledFeatures.h"
66 #include "platform/exported/WrappedResourceRequest.h" 65 #include "platform/exported/WrappedResourceRequest.h"
67 #include "platform/geometry/FloatRect.h" 66 #include "platform/geometry/FloatRect.h"
68 #include "platform/geometry/IntRect.h" 67 #include "platform/geometry/IntRect.h"
69 #include "platform/graphics/GraphicsLayer.h" 68 #include "platform/graphics/GraphicsLayer.h"
70 #include "platform/weborigin/SecurityOrigin.h" 69 #include "platform/weborigin/SecurityOrigin.h"
71 #include "public/platform/Platform.h" 70 #include "public/platform/Platform.h"
72 #include "public/platform/WebCursorInfo.h" 71 #include "public/platform/WebCursorInfo.h"
73 #include "public/platform/WebRect.h" 72 #include "public/platform/WebRect.h"
(...skipping 814 matching lines...) Expand 10 before | Expand all | Expand 10 after
888 m_webView->autofillClient()->textFieldDidEndEditing(WebInputElement(&inp utElement)); 887 m_webView->autofillClient()->textFieldDidEndEditing(WebInputElement(&inp utElement));
889 } 888 }
890 889
891 void ChromeClientImpl::openTextDataListChooser(HTMLInputElement& input) 890 void ChromeClientImpl::openTextDataListChooser(HTMLInputElement& input)
892 { 891 {
893 if (m_webView->autofillClient()) 892 if (m_webView->autofillClient())
894 m_webView->autofillClient()->openTextDataListChooser(WebInputElement(&in put)); 893 m_webView->autofillClient()->openTextDataListChooser(WebInputElement(&in put));
895 } 894 }
896 895
897 } // namespace blink 896 } // namespace blink
OLDNEW
« no previous file with comments | « Source/platform/fonts/skia/FontCacheSkia.cpp ('k') | Source/web/ServiceWorkerGlobalScopeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698