OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef WEBKIT_PLATFORM_SUPPORT_IMPL_H_ | 5 #ifndef WEBKIT_PLATFORM_SUPPORT_IMPL_H_ |
6 #define WEBKIT_PLATFORM_SUPPORT_IMPL_H_ | 6 #define WEBKIT_PLATFORM_SUPPORT_IMPL_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/platform_file.h" | 9 #include "base/platform_file.h" |
10 #include "base/threading/thread_local_storage.h" | 10 #include "base/threading/thread_local_storage.h" |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 virtual void decrementStatsCounter(const char* name); | 83 virtual void decrementStatsCounter(const char* name); |
84 virtual void incrementStatsCounter(const char* name); | 84 virtual void incrementStatsCounter(const char* name); |
85 virtual void histogramCustomCounts( | 85 virtual void histogramCustomCounts( |
86 const char* name, int sample, int min, int max, int bucket_count); | 86 const char* name, int sample, int min, int max, int bucket_count); |
87 virtual void histogramEnumeration( | 87 virtual void histogramEnumeration( |
88 const char* name, int sample, int boundary_value); | 88 const char* name, int sample, int boundary_value); |
89 virtual const unsigned char* getTraceCategoryEnabledFlag( | 89 virtual const unsigned char* getTraceCategoryEnabledFlag( |
90 const char* category_name); | 90 const char* category_name); |
91 virtual void addTraceEvent( | 91 virtual void addTraceEvent( |
92 char phase, | 92 char phase, |
93 const unsigned char* category_enabled, | 93 const unsigned char* category_group_enabled, |
94 const char* name, | 94 const char* name, |
95 unsigned long long id, | 95 unsigned long long id, |
96 int num_args, | 96 int num_args, |
97 const char** arg_names, | 97 const char** arg_names, |
98 const unsigned char* arg_types, | 98 const unsigned char* arg_types, |
99 const unsigned long long* arg_values, | 99 const unsigned long long* arg_values, |
100 unsigned char flags); | 100 unsigned char flags); |
101 virtual WebKit::WebData loadResource(const char* name); | 101 virtual WebKit::WebData loadResource(const char* name); |
102 virtual bool loadAudioResource( | 102 virtual bool loadAudioResource( |
103 WebKit::WebAudioBus* destination_bus, const char* audio_file_data, | 103 WebKit::WebAudioBus* destination_bus, const char* audio_file_data, |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 int shared_timer_suspended_; // counter | 183 int shared_timer_suspended_; // counter |
184 WebThemeEngineImpl theme_engine_; | 184 WebThemeEngineImpl theme_engine_; |
185 base::ThreadLocalStorage::Slot current_thread_slot_; | 185 base::ThreadLocalStorage::Slot current_thread_slot_; |
186 scoped_ptr<webkit::WebCompositorSupportImpl> compositor_support_; | 186 scoped_ptr<webkit::WebCompositorSupportImpl> compositor_support_; |
187 scoped_ptr<FlingCurveConfiguration> fling_curve_configuration_; | 187 scoped_ptr<FlingCurveConfiguration> fling_curve_configuration_; |
188 }; | 188 }; |
189 | 189 |
190 } // namespace webkit_glue | 190 } // namespace webkit_glue |
191 | 191 |
192 #endif // WEBKIT_PLATFORM_SUPPORT_IMPL_H_ | 192 #endif // WEBKIT_PLATFORM_SUPPORT_IMPL_H_ |
OLD | NEW |