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

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

Issue 14483003: Absolutify paths to platform/chromium, platform/chromium/support, (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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 #include "Geolocation.h" 58 #include "Geolocation.h"
59 #include "HTMLInputElement.h" 59 #include "HTMLInputElement.h"
60 #include "HTMLNames.h" 60 #include "HTMLNames.h"
61 #include "HitTestResult.h" 61 #include "HitTestResult.h"
62 #include "NavigationAction.h" 62 #include "NavigationAction.h"
63 #include "Node.h" 63 #include "Node.h"
64 #include "NotImplemented.h" 64 #include "NotImplemented.h"
65 #include "Page.h" 65 #include "Page.h"
66 #include "PagePopupDriver.h" 66 #include "PagePopupDriver.h"
67 #include "PlatformScreen.h" 67 #include "PlatformScreen.h"
68 #include "PopupContainer.h"
69 #include "PopupMenuChromium.h"
70 #include "RenderWidget.h" 68 #include "RenderWidget.h"
71 #include "ScriptController.h" 69 #include "ScriptController.h"
72 #include "SearchPopupMenuChromium.h"
73 #include "SecurityOrigin.h" 70 #include "SecurityOrigin.h"
74 #include "Settings.h" 71 #include "Settings.h"
75 #include "TextFieldDecorationElement.h" 72 #include "TextFieldDecorationElement.h"
76 #include "WebAccessibilityObject.h" 73 #include "WebAccessibilityObject.h"
77 #include "WebAutofillClient.h" 74 #include "WebAutofillClient.h"
75 #include "core/platform/chromium/PopupContainer.h"
76 #include "core/platform/chromium/PopupMenuChromium.h"
77 #include "core/platform/chromium/SearchPopupMenuChromium.h"
78 #include "core/platform/graphics/FloatRect.h" 78 #include "core/platform/graphics/FloatRect.h"
79 #include "core/platform/graphics/Icon.h" 79 #include "core/platform/graphics/Icon.h"
80 #include "core/platform/graphics/IntRect.h" 80 #include "core/platform/graphics/IntRect.h"
81 #include "core/platform/graphics/chromium/GraphicsLayerChromium.h" 81 #include "core/platform/graphics/chromium/GraphicsLayerChromium.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"
92 #include "WebKit.h" 92 #include "WebKit.h"
93 #include "WebNode.h" 93 #include "WebNode.h"
94 #include "WebPlugin.h" 94 #include "WebPlugin.h"
95 #include "WebPluginContainerImpl.h" 95 #include "WebPluginContainerImpl.h"
96 #include "WebPopupMenuImpl.h" 96 #include "WebPopupMenuImpl.h"
97 #include "WebPopupMenuInfo.h" 97 #include "WebPopupMenuInfo.h"
98 #include "WebPopupType.h" 98 #include "WebPopupType.h"
99 #include "WebSettings.h" 99 #include "WebSettings.h"
100 #include "WebSettingsImpl.h" 100 #include "WebSettingsImpl.h"
101 #include "WebTextDirection.h" 101 #include "WebTextDirection.h"
102 #include "WebViewClient.h" 102 #include "WebViewClient.h"
103 #include "WebViewImpl.h" 103 #include "WebViewImpl.h"
104 #include "WebWindowFeatures.h" 104 #include "WebWindowFeatures.h"
105 #include "WindowFeatures.h" 105 #include "WindowFeatures.h"
106 #include "WrappedResourceRequest.h" 106 #include "core/platform/chromium/support/WrappedResourceRequest.h"
107 #include <public/Platform.h> 107 #include <public/Platform.h>
108 #include <public/WebRect.h> 108 #include <public/WebRect.h>
109 #include <public/WebURLRequest.h> 109 #include <public/WebURLRequest.h>
110 #include <wtf/text/CString.h> 110 #include <wtf/text/CString.h>
111 #include <wtf/text/StringBuilder.h> 111 #include <wtf/text/StringBuilder.h>
112 #include <wtf/text/StringConcatenate.h> 112 #include <wtf/text/StringConcatenate.h>
113 #include <wtf/unicode/CharacterNames.h> 113 #include <wtf/unicode/CharacterNames.h>
114 114
115 using namespace WebCore; 115 using namespace WebCore;
116 116
(...skipping 1083 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/AssociatedURLLoader.cpp ('k') | Source/WebKit/chromium/src/DragClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698