| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 const unsigned char* category_enabled, | 80 const unsigned char* category_enabled, |
| 81 const char* name, | 81 const char* name, |
| 82 unsigned long long id, | 82 unsigned long long id, |
| 83 int num_args, | 83 int num_args, |
| 84 const char** arg_names, | 84 const char** arg_names, |
| 85 const unsigned char* arg_types, | 85 const unsigned char* arg_types, |
| 86 const unsigned long long* arg_values, | 86 const unsigned long long* arg_values, |
| 87 int threshold_begin_id, | 87 int threshold_begin_id, |
| 88 long long threshold, | 88 long long threshold, |
| 89 unsigned char flags); | 89 unsigned char flags); |
| 90 virtual unsigned long long manglePointerForTracing(void* pointer); | |
| 91 virtual WebKit::WebData loadResource(const char* name); | 90 virtual WebKit::WebData loadResource(const char* name); |
| 92 virtual bool loadAudioResource( | 91 virtual bool loadAudioResource( |
| 93 WebKit::WebAudioBus* destination_bus, const char* audio_file_data, | 92 WebKit::WebAudioBus* destination_bus, const char* audio_file_data, |
| 94 size_t data_size, double sample_rate); | 93 size_t data_size, double sample_rate); |
| 95 virtual WebKit::WebString queryLocalizedString( | 94 virtual WebKit::WebString queryLocalizedString( |
| 96 WebKit::WebLocalizedString::Name name); | 95 WebKit::WebLocalizedString::Name name); |
| 97 virtual WebKit::WebString queryLocalizedString( | 96 virtual WebKit::WebString queryLocalizedString( |
| 98 WebKit::WebLocalizedString::Name name, int numeric_value); | 97 WebKit::WebLocalizedString::Name name, int numeric_value); |
| 99 virtual WebKit::WebString queryLocalizedString( | 98 virtual WebKit::WebString queryLocalizedString( |
| 100 WebKit::WebLocalizedString::Name name, const WebKit::WebString& value); | 99 WebKit::WebLocalizedString::Name name, const WebKit::WebString& value); |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 void (*shared_timer_func_)(); | 155 void (*shared_timer_func_)(); |
| 157 double shared_timer_fire_time_; | 156 double shared_timer_fire_time_; |
| 158 int shared_timer_suspended_; // counter | 157 int shared_timer_suspended_; // counter |
| 159 WebThemeEngineImpl theme_engine_; | 158 WebThemeEngineImpl theme_engine_; |
| 160 base::ThreadLocalStorage::Slot current_thread_slot_; | 159 base::ThreadLocalStorage::Slot current_thread_slot_; |
| 161 }; | 160 }; |
| 162 | 161 |
| 163 } // namespace webkit_glue | 162 } // namespace webkit_glue |
| 164 | 163 |
| 165 #endif // WEBKIT_PLATFORM_SUPPORT_IMPL_H_ | 164 #endif // WEBKIT_PLATFORM_SUPPORT_IMPL_H_ |
| OLD | NEW |