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

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

Issue 99103006: Moving GraphicsContext and dependencies from core to platform. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final patch - fixes Android Created 7 years 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/DragClientImpl.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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 #include "core/html/HTMLInputElement.h" 77 #include "core/html/HTMLInputElement.h"
78 #include "core/loader/DocumentLoader.h" 78 #include "core/loader/DocumentLoader.h"
79 #include "core/loader/FrameLoadRequest.h" 79 #include "core/loader/FrameLoadRequest.h"
80 #include "core/frame/Console.h" 80 #include "core/frame/Console.h"
81 #include "core/frame/FrameView.h" 81 #include "core/frame/FrameView.h"
82 #include "core/page/Page.h" 82 #include "core/page/Page.h"
83 #include "core/page/PagePopupDriver.h" 83 #include "core/page/PagePopupDriver.h"
84 #include "core/page/Settings.h" 84 #include "core/page/Settings.h"
85 #include "core/page/WindowFeatures.h" 85 #include "core/page/WindowFeatures.h"
86 #include "core/platform/Cursor.h" 86 #include "core/platform/Cursor.h"
87 #include "core/platform/graphics/GraphicsLayer.h"
88 #include "core/rendering/HitTestResult.h" 87 #include "core/rendering/HitTestResult.h"
89 #include "core/rendering/RenderWidget.h" 88 #include "core/rendering/RenderWidget.h"
90 #include "modules/geolocation/Geolocation.h" 89 #include "modules/geolocation/Geolocation.h"
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"
98 #include "platform/graphics/GraphicsLayer.h"
99 #include "platform/weborigin/SecurityOrigin.h" 99 #include "platform/weborigin/SecurityOrigin.h"
100 #include "public/platform/Platform.h" 100 #include "public/platform/Platform.h"
101 #include "public/platform/WebCursorInfo.h" 101 #include "public/platform/WebCursorInfo.h"
102 #include "public/platform/WebRect.h" 102 #include "public/platform/WebRect.h"
103 #include "public/platform/WebURLRequest.h" 103 #include "public/platform/WebURLRequest.h"
104 #include "wtf/text/CString.h" 104 #include "wtf/text/CString.h"
105 #include "wtf/text/StringBuilder.h" 105 #include "wtf/text/StringBuilder.h"
106 #include "wtf/text/StringConcatenate.h" 106 #include "wtf/text/StringConcatenate.h"
107 #include "wtf/unicode/CharacterNames.h" 107 #include "wtf/unicode/CharacterNames.h"
108 108
(...skipping 924 matching lines...) Expand 10 before | Expand all | Expand 10 after
1033 { 1033 {
1034 } 1034 }
1035 1035
1036 void NavigatorContentUtilsClientImpl::registerProtocolHandler(const String& sche me, const String& baseURL, const String& url, const String& title) 1036 void NavigatorContentUtilsClientImpl::registerProtocolHandler(const String& sche me, const String& baseURL, const String& url, const String& title)
1037 { 1037 {
1038 m_webView->client()->registerProtocolHandler(scheme, baseURL, url, title); 1038 m_webView->client()->registerProtocolHandler(scheme, baseURL, url, title);
1039 } 1039 }
1040 #endif 1040 #endif
1041 1041
1042 } // namespace blink 1042 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/AssertMatchingEnums.cpp ('k') | Source/web/DragClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698