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

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

Issue 60033008: Remove forwarding headers in public/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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/web/AssertMatchingEnums.cpp ('k') | Source/web/StorageQuotaChromium.cpp » ('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) 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 "ExternalPopupMenu.h" 39 #include "ExternalPopupMenu.h"
40 #include "HTMLNames.h" 40 #include "HTMLNames.h"
41 #include "PopupContainer.h" 41 #include "PopupContainer.h"
42 #include "PopupMenuChromium.h" 42 #include "PopupMenuChromium.h"
43 #include "RuntimeEnabledFeatures.h" 43 #include "RuntimeEnabledFeatures.h"
44 #include "WebAXObject.h" 44 #include "WebAXObject.h"
45 #include "WebAutofillClient.h" 45 #include "WebAutofillClient.h"
46 #include "WebColorChooser.h" 46 #include "WebColorChooser.h"
47 #include "WebColorSuggestion.h" 47 #include "WebColorSuggestion.h"
48 #include "WebConsoleMessage.h" 48 #include "WebConsoleMessage.h"
49 #include "WebCursorInfo.h"
50 #include "WebFileChooserCompletionImpl.h" 49 #include "WebFileChooserCompletionImpl.h"
51 #include "WebFrameClient.h" 50 #include "WebFrameClient.h"
52 #include "WebFrameImpl.h" 51 #include "WebFrameImpl.h"
53 #include "WebInputElement.h" 52 #include "WebInputElement.h"
54 #include "WebInputEvent.h" 53 #include "WebInputEvent.h"
55 #include "WebKit.h" 54 #include "WebKit.h"
56 #include "WebNode.h" 55 #include "WebNode.h"
57 #include "WebPasswordGeneratorClient.h" 56 #include "WebPasswordGeneratorClient.h"
58 #include "WebPlugin.h" 57 #include "WebPlugin.h"
59 #include "WebPluginContainerImpl.h" 58 #include "WebPluginContainerImpl.h"
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 #include "platform/ColorChooser.h" 90 #include "platform/ColorChooser.h"
92 #include "platform/ColorChooserClient.h" 91 #include "platform/ColorChooserClient.h"
93 #include "platform/DateTimeChooser.h" 92 #include "platform/DateTimeChooser.h"
94 #include "platform/FileChooser.h" 93 #include "platform/FileChooser.h"
95 #include "platform/PlatformScreen.h" 94 #include "platform/PlatformScreen.h"
96 #include "platform/exported/WrappedResourceRequest.h" 95 #include "platform/exported/WrappedResourceRequest.h"
97 #include "platform/geometry/FloatRect.h" 96 #include "platform/geometry/FloatRect.h"
98 #include "platform/geometry/IntRect.h" 97 #include "platform/geometry/IntRect.h"
99 #include "platform/weborigin/SecurityOrigin.h" 98 #include "platform/weborigin/SecurityOrigin.h"
100 #include "public/platform/Platform.h" 99 #include "public/platform/Platform.h"
100 #include "public/platform/WebCursorInfo.h"
101 #include "public/platform/WebRect.h" 101 #include "public/platform/WebRect.h"
102 #include "public/platform/WebURLRequest.h" 102 #include "public/platform/WebURLRequest.h"
103 #include "wtf/text/CString.h" 103 #include "wtf/text/CString.h"
104 #include "wtf/text/StringBuilder.h" 104 #include "wtf/text/StringBuilder.h"
105 #include "wtf/text/StringConcatenate.h" 105 #include "wtf/text/StringConcatenate.h"
106 #include "wtf/unicode/CharacterNames.h" 106 #include "wtf/unicode/CharacterNames.h"
107 107
108 using namespace WebCore; 108 using namespace WebCore;
109 109
110 namespace blink { 110 namespace blink {
(...skipping 883 matching lines...) Expand 10 before | Expand all | Expand 10 after
994 { 994 {
995 } 995 }
996 996
997 void NavigatorContentUtilsClientImpl::registerProtocolHandler(const String& sche me, const String& baseURL, const String& url, const String& title) 997 void NavigatorContentUtilsClientImpl::registerProtocolHandler(const String& sche me, const String& baseURL, const String& url, const String& title)
998 { 998 {
999 m_webView->client()->registerProtocolHandler(scheme, baseURL, url, title); 999 m_webView->client()->registerProtocolHandler(scheme, baseURL, url, title);
1000 } 1000 }
1001 #endif 1001 #endif
1002 1002
1003 } // namespace blink 1003 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/AssertMatchingEnums.cpp ('k') | Source/web/StorageQuotaChromium.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698