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

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

Issue 13774005: Remove the ENABLE_SQL_DATABASE compile-time flag. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: python 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
« no previous file with comments | « Source/WebKit/chromium/features.gypi ('k') | Source/WebKit/chromium/src/ChromeClientImpl.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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 virtual void deviceOrPageScaleFactorChanged() const; 130 virtual void deviceOrPageScaleFactorChanged() const;
131 virtual void layoutUpdated(WebCore::Frame*) const; 131 virtual void layoutUpdated(WebCore::Frame*) const;
132 virtual void scrollRectIntoView( 132 virtual void scrollRectIntoView(
133 const WebCore::IntRect&) const { } 133 const WebCore::IntRect&) const { }
134 virtual void scrollbarsModeDidChange() const; 134 virtual void scrollbarsModeDidChange() const;
135 virtual void mouseDidMoveOverElement( 135 virtual void mouseDidMoveOverElement(
136 const WebCore::HitTestResult& result, unsigned modifierFlags); 136 const WebCore::HitTestResult& result, unsigned modifierFlags);
137 virtual void setToolTip(const WTF::String& tooltipText, WebCore::TextDirecti on); 137 virtual void setToolTip(const WTF::String& tooltipText, WebCore::TextDirecti on);
138 virtual void dispatchViewportPropertiesDidChange(const WebCore::ViewportArgu ments&) const; 138 virtual void dispatchViewportPropertiesDidChange(const WebCore::ViewportArgu ments&) const;
139 virtual void print(WebCore::Frame*); 139 virtual void print(WebCore::Frame*);
140 #if ENABLE(SQL_DATABASE)
141 virtual void exceededDatabaseQuota( 140 virtual void exceededDatabaseQuota(
142 WebCore::Frame*, const WTF::String& databaseName, WebCore::DatabaseDetai ls); 141 WebCore::Frame*, const WTF::String& databaseName, WebCore::DatabaseDetai ls);
143 #endif
144 virtual void reachedMaxAppCacheSize(int64_t spaceNeeded); 142 virtual void reachedMaxAppCacheSize(int64_t spaceNeeded);
145 virtual void reachedApplicationCacheOriginQuota(WebCore::SecurityOrigin*, in t64_t totalSpaceNeeded); 143 virtual void reachedApplicationCacheOriginQuota(WebCore::SecurityOrigin*, in t64_t totalSpaceNeeded);
146 #if ENABLE(DRAGGABLE_REGION) 144 #if ENABLE(DRAGGABLE_REGION)
147 virtual void annotatedRegionsChanged(); 145 virtual void annotatedRegionsChanged();
148 #endif 146 #endif
149 virtual bool paintCustomOverhangArea(WebCore::GraphicsContext*, const WebCor e::IntRect&, const WebCore::IntRect&, const WebCore::IntRect&); 147 virtual bool paintCustomOverhangArea(WebCore::GraphicsContext*, const WebCor e::IntRect&, const WebCore::IntRect&, const WebCore::IntRect&);
150 #if ENABLE(INPUT_TYPE_COLOR) 148 #if ENABLE(INPUT_TYPE_COLOR)
151 virtual PassOwnPtr<WebCore::ColorChooser> createColorChooser(WebCore::ColorC hooserClient*, const WebCore::Color&) OVERRIDE; 149 virtual PassOwnPtr<WebCore::ColorChooser> createColorChooser(WebCore::ColorC hooserClient*, const WebCore::Color&) OVERRIDE;
152 PassOwnPtr<WebColorChooser> createWebColorChooser(WebColorChooserClient*, co nst WebColor&); 150 PassOwnPtr<WebColorChooser> createWebColorChooser(WebColorChooserClient*, co nst WebColor&);
153 #endif 151 #endif
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 private: 264 private:
267 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); 265 explicit NavigatorContentUtilsClientImpl(WebViewImpl*);
268 266
269 WebViewImpl* m_webView; 267 WebViewImpl* m_webView;
270 }; 268 };
271 #endif 269 #endif
272 270
273 } // namespace WebKit 271 } // namespace WebKit
274 272
275 #endif 273 #endif
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/features.gypi ('k') | Source/WebKit/chromium/src/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698