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

Side by Side Diff: Source/WebCore/loader/EmptyClients.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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org) 2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org)
3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
9 * are met: 9 * are met:
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 virtual PlatformPageClient platformPageClient() const { return 0; } 151 virtual PlatformPageClient platformPageClient() const { return 0; }
152 virtual void contentsSizeChanged(Frame*, const IntSize&) const { } 152 virtual void contentsSizeChanged(Frame*, const IntSize&) const { }
153 153
154 virtual void scrollbarsModeDidChange() const { } 154 virtual void scrollbarsModeDidChange() const { }
155 virtual void mouseDidMoveOverElement(const HitTestResult&, unsigned) { } 155 virtual void mouseDidMoveOverElement(const HitTestResult&, unsigned) { }
156 156
157 virtual void setToolTip(const String&, TextDirection) { } 157 virtual void setToolTip(const String&, TextDirection) { }
158 158
159 virtual void print(Frame*) { } 159 virtual void print(Frame*) { }
160 160
161 #if ENABLE(SQL_DATABASE)
162 virtual void exceededDatabaseQuota(Frame*, const String&, DatabaseDetails) { } 161 virtual void exceededDatabaseQuota(Frame*, const String&, DatabaseDetails) { }
163 #endif
164 162
165 virtual void reachedMaxAppCacheSize(int64_t) { } 163 virtual void reachedMaxAppCacheSize(int64_t) { }
166 virtual void reachedApplicationCacheOriginQuota(SecurityOrigin*, int64_t) { } 164 virtual void reachedApplicationCacheOriginQuota(SecurityOrigin*, int64_t) { }
167 165
168 #if ENABLE(DIRECTORY_UPLOAD) 166 #if ENABLE(DIRECTORY_UPLOAD)
169 virtual void enumerateChosenDirectory(FileChooser*) { } 167 virtual void enumerateChosenDirectory(FileChooser*) { }
170 #endif 168 #endif
171 169
172 #if ENABLE(INPUT_TYPE_COLOR) 170 #if ENABLE(INPUT_TYPE_COLOR)
173 virtual PassOwnPtr<ColorChooser> createColorChooser(ColorChooserClient*, con st Color&) OVERRIDE; 171 virtual PassOwnPtr<ColorChooser> createColorChooser(ColorChooserClient*, con st Color&) OVERRIDE;
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
589 virtual void setController(DeviceOrientationController*) { } 587 virtual void setController(DeviceOrientationController*) { }
590 virtual DeviceOrientationData* lastOrientation() const { return 0; } 588 virtual DeviceOrientationData* lastOrientation() const { return 0; }
591 virtual void deviceOrientationControllerDestroyed() { } 589 virtual void deviceOrientationControllerDestroyed() { }
592 }; 590 };
593 591
594 void fillWithEmptyClients(Page::PageClients&); 592 void fillWithEmptyClients(Page::PageClients&);
595 593
596 } 594 }
597 595
598 #endif // EmptyClients_h 596 #endif // EmptyClients_h
OLDNEW
« no previous file with comments | « Source/WebCore/inspector/WorkerInspectorController.cpp ('k') | Source/WebCore/loader/FrameLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698