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

Side by Side Diff: WebKit/chromium/src/ChromiumBridge.cpp

Issue 5622002: Merge 73137 - 2010-12-02 Vincent Scheib <scheib@chromium.org>... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/597/
Patch Set: Created 10 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
« no previous file with comments | « WebKit/chromium/public/WebKitClient.h ('k') | WebKit/chromium/src/WebViewImpl.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 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after
672 void ChromiumBridge::decrementStatsCounter(const char* name) 672 void ChromiumBridge::decrementStatsCounter(const char* name)
673 { 673 {
674 webKitClient()->decrementStatsCounter(name); 674 webKitClient()->decrementStatsCounter(name);
675 } 675 }
676 676
677 void ChromiumBridge::incrementStatsCounter(const char* name) 677 void ChromiumBridge::incrementStatsCounter(const char* name)
678 { 678 {
679 webKitClient()->incrementStatsCounter(name); 679 webKitClient()->incrementStatsCounter(name);
680 } 680 }
681 681
682 void ChromiumBridge::histogramCustomCounts(const char* name, int sample, int min , int max, int bucketCount)
683 {
684 webKitClient()->histogramCustomCounts(name, sample, min, max, bucketCount);
685 }
686
687 void ChromiumBridge::histogramEnumeration(const char* name, int sample, int boun daryValue)
688 {
689 webKitClient()->histogramEnumeration(name, sample, boundaryValue);
690 }
691
682 // Sudden Termination --------------------------------------------------------- 692 // Sudden Termination ---------------------------------------------------------
683 693
684 void ChromiumBridge::suddenTerminationChanged(bool enabled) 694 void ChromiumBridge::suddenTerminationChanged(bool enabled)
685 { 695 {
686 webKitClient()->suddenTerminationChanged(enabled); 696 webKitClient()->suddenTerminationChanged(enabled);
687 } 697 }
688 698
689 // SystemTime ----------------------------------------------------------------- 699 // SystemTime -----------------------------------------------------------------
690 700
691 double ChromiumBridge::currentTime() 701 double ChromiumBridge::currentTime()
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
969 if (client) 979 if (client)
970 client->setCursor(WebCursorInfo(cursor)); 980 client->setCursor(WebCursorInfo(cursor));
971 } 981 }
972 982
973 WorkerContextProxy* WorkerContextProxy::create(Worker* worker) 983 WorkerContextProxy* WorkerContextProxy::create(Worker* worker)
974 { 984 {
975 return WebWorkerClientImpl::createWorkerContextProxy(worker); 985 return WebWorkerClientImpl::createWorkerContextProxy(worker);
976 } 986 }
977 987
978 } // namespace WebCore 988 } // namespace WebCore
OLDNEW
« no previous file with comments | « WebKit/chromium/public/WebKitClient.h ('k') | WebKit/chromium/src/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698