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

Side by Side Diff: Source/WebKit/chromium/src/ChromeClientImpl.cpp

Issue 14383019: Absolutify paths to modules/*, part 1. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: .... 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
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 28 matching lines...) Expand all
39 #include "core/platform/ColorChooserClient.h" 39 #include "core/platform/ColorChooserClient.h"
40 #if ENABLE(PAGE_POPUP) 40 #if ENABLE(PAGE_POPUP)
41 #include "ColorChooserPopupUIController.h" 41 #include "ColorChooserPopupUIController.h"
42 #else 42 #else
43 #include "ColorChooserUIController.h" 43 #include "ColorChooserUIController.h"
44 #endif 44 #endif
45 #endif 45 #endif
46 #include "DateTimeChooserImpl.h" 46 #include "DateTimeChooserImpl.h"
47 #include "ExternalDateTimeChooser.h" 47 #include "ExternalDateTimeChooser.h"
48 #include "ExternalPopupMenu.h" 48 #include "ExternalPopupMenu.h"
49 #include "Geolocation.h"
50 #include "HTMLInputElement.h" 49 #include "HTMLInputElement.h"
51 #include "HTMLNames.h" 50 #include "HTMLNames.h"
52 #include "ScriptController.h" 51 #include "ScriptController.h"
53 #include "WebAccessibilityObject.h" 52 #include "WebAccessibilityObject.h"
54 #include "WebAutofillClient.h" 53 #include "WebAutofillClient.h"
55 #include "core/dom/Document.h" 54 #include "core/dom/Document.h"
56 #include "core/dom/Node.h" 55 #include "core/dom/Node.h"
57 #include "core/html/shadow/TextFieldDecorationElement.h" 56 #include "core/html/shadow/TextFieldDecorationElement.h"
58 #include "core/loader/DocumentLoader.h" 57 #include "core/loader/DocumentLoader.h"
59 #include "core/loader/FrameLoadRequest.h" 58 #include "core/loader/FrameLoadRequest.h"
(...skipping 12 matching lines...) Expand all
72 #include "core/platform/PlatformScreen.h" 71 #include "core/platform/PlatformScreen.h"
73 #include "core/platform/chromium/PopupContainer.h" 72 #include "core/platform/chromium/PopupContainer.h"
74 #include "core/platform/chromium/PopupMenuChromium.h" 73 #include "core/platform/chromium/PopupMenuChromium.h"
75 #include "core/platform/chromium/SearchPopupMenuChromium.h" 74 #include "core/platform/chromium/SearchPopupMenuChromium.h"
76 #include "core/platform/graphics/FloatRect.h" 75 #include "core/platform/graphics/FloatRect.h"
77 #include "core/platform/graphics/Icon.h" 76 #include "core/platform/graphics/Icon.h"
78 #include "core/platform/graphics/IntRect.h" 77 #include "core/platform/graphics/IntRect.h"
79 #include "core/platform/graphics/chromium/GraphicsLayerChromium.h" 78 #include "core/platform/graphics/chromium/GraphicsLayerChromium.h"
80 #include "core/rendering/HitTestResult.h" 79 #include "core/rendering/HitTestResult.h"
81 #include "core/rendering/RenderWidget.h" 80 #include "core/rendering/RenderWidget.h"
81 #include "modules/geolocation/Geolocation.h"
82 #if ENABLE(INPUT_TYPE_COLOR) 82 #if ENABLE(INPUT_TYPE_COLOR)
83 #include "WebColorChooser.h" 83 #include "WebColorChooser.h"
84 #endif 84 #endif
85 #include "WebConsoleMessage.h" 85 #include "WebConsoleMessage.h"
86 #include "WebCursorInfo.h" 86 #include "WebCursorInfo.h"
87 #include "WebFileChooserCompletionImpl.h" 87 #include "WebFileChooserCompletionImpl.h"
88 #include "WebFrameClient.h" 88 #include "WebFrameClient.h"
89 #include "WebFrameImpl.h" 89 #include "WebFrameImpl.h"
90 #include "WebIconLoadingCompletionImpl.h" 90 #include "WebIconLoadingCompletionImpl.h"
91 #include "WebInputEvent.h" 91 #include "WebInputEvent.h"
(...skipping 1108 matching lines...) Expand 10 before | Expand all | Expand 10 after
1200 { 1200 {
1201 } 1201 }
1202 1202
1203 void NavigatorContentUtilsClientImpl::registerProtocolHandler(const String& sche me, const String& baseURL, const String& url, const String& title) 1203 void NavigatorContentUtilsClientImpl::registerProtocolHandler(const String& sche me, const String& baseURL, const String& url, const String& title)
1204 { 1204 {
1205 m_webView->client()->registerProtocolHandler(scheme, baseURL, url, title); 1205 m_webView->client()->registerProtocolHandler(scheme, baseURL, url, title);
1206 } 1206 }
1207 #endif 1207 #endif
1208 1208
1209 } // namespace WebKit 1209 } // namespace WebKit
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/src/BatteryClientImpl.cpp ('k') | Source/WebKit/chromium/src/GeolocationClientProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698