| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |