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

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

Issue 25494003: Move geometry classes from core/platform/graphics to platform/geometry (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 #include "core/page/Page.h" 80 #include "core/page/Page.h"
81 #include "core/page/PagePopupDriver.h" 81 #include "core/page/PagePopupDriver.h"
82 #include "core/page/Settings.h" 82 #include "core/page/Settings.h"
83 #include "core/page/WindowFeatures.h" 83 #include "core/page/WindowFeatures.h"
84 #include "core/platform/ColorChooser.h" 84 #include "core/platform/ColorChooser.h"
85 #include "core/platform/ColorChooserClient.h" 85 #include "core/platform/ColorChooserClient.h"
86 #include "core/platform/Cursor.h" 86 #include "core/platform/Cursor.h"
87 #include "core/platform/DateTimeChooser.h" 87 #include "core/platform/DateTimeChooser.h"
88 #include "core/platform/PlatformScreen.h" 88 #include "core/platform/PlatformScreen.h"
89 #include "core/platform/chromium/support/WrappedResourceRequest.h" 89 #include "core/platform/chromium/support/WrappedResourceRequest.h"
90 #include "core/platform/graphics/FloatRect.h"
91 #include "core/platform/graphics/GraphicsLayer.h" 90 #include "core/platform/graphics/GraphicsLayer.h"
92 #include "core/platform/graphics/IntRect.h"
93 #include "core/rendering/HitTestResult.h" 91 #include "core/rendering/HitTestResult.h"
94 #include "core/rendering/RenderWidget.h" 92 #include "core/rendering/RenderWidget.h"
95 #include "modules/geolocation/Geolocation.h" 93 #include "modules/geolocation/Geolocation.h"
96 #include "platform/FileChooser.h" 94 #include "platform/FileChooser.h"
95 #include "platform/geometry/FloatRect.h"
96 #include "platform/geometry/IntRect.h"
97 #include "public/platform/Platform.h" 97 #include "public/platform/Platform.h"
98 #include "public/platform/WebRect.h" 98 #include "public/platform/WebRect.h"
99 #include "public/platform/WebURLRequest.h" 99 #include "public/platform/WebURLRequest.h"
100 #include "weborigin/SecurityOrigin.h" 100 #include "weborigin/SecurityOrigin.h"
101 #include "wtf/text/CString.h" 101 #include "wtf/text/CString.h"
102 #include "wtf/text/StringBuilder.h" 102 #include "wtf/text/StringBuilder.h"
103 #include "wtf/text/StringConcatenate.h" 103 #include "wtf/text/StringConcatenate.h"
104 #include "wtf/unicode/CharacterNames.h" 104 #include "wtf/unicode/CharacterNames.h"
105 105
106 using namespace WebCore; 106 using namespace WebCore;
(...skipping 900 matching lines...) Expand 10 before | Expand all | Expand 10 after
1007 { 1007 {
1008 } 1008 }
1009 1009
1010 void NavigatorContentUtilsClientImpl::registerProtocolHandler(const String& sche me, const String& baseURL, const String& url, const String& title) 1010 void NavigatorContentUtilsClientImpl::registerProtocolHandler(const String& sche me, const String& baseURL, const String& url, const String& title)
1011 { 1011 {
1012 m_webView->client()->registerProtocolHandler(scheme, baseURL, url, title); 1012 m_webView->client()->registerProtocolHandler(scheme, baseURL, url, title);
1013 } 1013 }
1014 #endif 1014 #endif
1015 1015
1016 } // namespace WebKit 1016 } // namespace WebKit
OLDNEW
« no previous file with comments | « Source/platform/transforms/TransformationMatrix.cpp ('k') | Source/web/ColorChooserPopupUIController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698