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

Side by Side Diff: webkit/glue/webkitclient_impl.cc

Issue 7037018: DB quota (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 7 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 | « webkit/glue/webkitclient_impl.h ('k') | webkit/support/simple_database_system.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "webkit/glue/webkitclient_impl.h" 5 #include "webkit/glue/webkitclient_impl.h"
6 6
7 #if defined(OS_LINUX) 7 #if defined(OS_LINUX)
8 #include <malloc.h> 8 #include <malloc.h>
9 #endif 9 #endif
10 10
(...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after
499 long WebKitClientImpl::databaseGetFileAttributes( 499 long WebKitClientImpl::databaseGetFileAttributes(
500 const WebKit::WebString& vfs_file_name) { 500 const WebKit::WebString& vfs_file_name) {
501 return 0; 501 return 0;
502 } 502 }
503 503
504 long long WebKitClientImpl::databaseGetFileSize( 504 long long WebKitClientImpl::databaseGetFileSize(
505 const WebKit::WebString& vfs_file_name) { 505 const WebKit::WebString& vfs_file_name) {
506 return 0; 506 return 0;
507 } 507 }
508 508
509 long long WebKitClientImpl::databaseGetSpaceAvailableForOrigin(
510 const WebKit::WebString& origin_identifier) {
511 return 0;
512 }
513
509 WebKit::WebString WebKitClientImpl::signedPublicKeyAndChallengeString( 514 WebKit::WebString WebKitClientImpl::signedPublicKeyAndChallengeString(
510 unsigned key_size_index, 515 unsigned key_size_index,
511 const WebKit::WebString& challenge, 516 const WebKit::WebString& challenge,
512 const WebKit::WebURL& url) { 517 const WebKit::WebURL& url) {
513 NOTREACHED(); 518 NOTREACHED();
514 return WebKit::WebString(); 519 return WebKit::WebString();
515 } 520 }
516 521
517 #if defined(OS_LINUX) 522 #if defined(OS_LINUX)
518 static size_t memoryUsageMBLinux() { 523 static size_t memoryUsageMBLinux() {
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 ++shared_timer_suspended_; 590 ++shared_timer_suspended_;
586 } 591 }
587 592
588 void WebKitClientImpl::ResumeSharedTimer() { 593 void WebKitClientImpl::ResumeSharedTimer() {
589 // The shared timer may have fired or been adjusted while we were suspended. 594 // The shared timer may have fired or been adjusted while we were suspended.
590 if (--shared_timer_suspended_ == 0 && !shared_timer_.IsRunning()) 595 if (--shared_timer_suspended_ == 0 && !shared_timer_.IsRunning())
591 setSharedTimerFireTime(shared_timer_fire_time_); 596 setSharedTimerFireTime(shared_timer_fire_time_);
592 } 597 }
593 598
594 } // namespace webkit_glue 599 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/glue/webkitclient_impl.h ('k') | webkit/support/simple_database_system.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698