| OLD | NEW |
| 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/support/webkit_support.h" | 5 #include "webkit/support/webkit_support.h" |
| 6 | 6 |
| 7 #include "app/gfx/gl/gl_context.h" | |
| 8 #include "app/gfx/gl/gl_implementation.h" | |
| 9 #include "base/at_exit.h" | 7 #include "base/at_exit.h" |
| 10 #include "base/base64.h" | 8 #include "base/base64.h" |
| 11 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 12 #include "base/debug/debugger.h" | 10 #include "base/debug/debugger.h" |
| 13 #include "base/file_path.h" | 11 #include "base/file_path.h" |
| 14 #include "base/file_util.h" | 12 #include "base/file_util.h" |
| 15 #include "base/i18n/icu_util.h" | 13 #include "base/i18n/icu_util.h" |
| 16 #include "base/logging.h" | 14 #include "base/logging.h" |
| 17 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
| 18 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 29 #include "media/base/filter_collection.h" | 27 #include "media/base/filter_collection.h" |
| 30 #include "media/base/message_loop_factory_impl.h" | 28 #include "media/base/message_loop_factory_impl.h" |
| 31 #include "net/base/escape.h" | 29 #include "net/base/escape.h" |
| 32 #include "net/base/net_errors.h" | 30 #include "net/base/net_errors.h" |
| 33 #include "net/base/net_util.h" | 31 #include "net/base/net_util.h" |
| 34 #include "testing/gtest/include/gtest/gtest.h" | 32 #include "testing/gtest/include/gtest/gtest.h" |
| 35 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystemCallback
s.h" | 33 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystemCallback
s.h" |
| 36 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" | 34 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" |
| 37 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginParams.h" | 35 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginParams.h" |
| 38 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLError.h" | 36 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLError.h" |
| 37 #include "ui/gfx/gl/gl_context.h" |
| 38 #include "ui/gfx/gl/gl_implementation.h" |
| 39 #include "webkit/appcache/web_application_cache_host_impl.h" | 39 #include "webkit/appcache/web_application_cache_host_impl.h" |
| 40 #include "webkit/glue/media/video_renderer_impl.h" | 40 #include "webkit/glue/media/video_renderer_impl.h" |
| 41 #include "webkit/glue/webkit_constants.h" | 41 #include "webkit/glue/webkit_constants.h" |
| 42 #include "webkit/glue/webkit_glue.h" | 42 #include "webkit/glue/webkit_glue.h" |
| 43 #include "webkit/glue/webkitclient_impl.h" | 43 #include "webkit/glue/webkitclient_impl.h" |
| 44 #include "webkit/glue/webmediaplayer_impl.h" | 44 #include "webkit/glue/webmediaplayer_impl.h" |
| 45 #include "webkit/plugins/npapi/plugin_list.h" | 45 #include "webkit/plugins/npapi/plugin_list.h" |
| 46 #include "webkit/plugins/npapi/webplugin_impl.h" | 46 #include "webkit/plugins/npapi/webplugin_impl.h" |
| 47 #include "webkit/plugins/npapi/webplugin_page_delegate.h" | 47 #include "webkit/plugins/npapi/webplugin_page_delegate.h" |
| 48 #include "webkit/plugins/npapi/webplugininfo.h" | 48 #include "webkit/plugins/npapi/webplugininfo.h" |
| (...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 test_environment->webkit_client()->fileSystem()); | 570 test_environment->webkit_client()->fileSystem()); |
| 571 fileSystem->OpenFileSystem(frame, type, size, create, callbacks); | 571 fileSystem->OpenFileSystem(frame, type, size, create, callbacks); |
| 572 } | 572 } |
| 573 | 573 |
| 574 // Timers | 574 // Timers |
| 575 double GetForegroundTabTimerInterval() { | 575 double GetForegroundTabTimerInterval() { |
| 576 return webkit_glue::kForegroundTabTimerInterval; | 576 return webkit_glue::kForegroundTabTimerInterval; |
| 577 } | 577 } |
| 578 | 578 |
| 579 } // namespace webkit_support | 579 } // namespace webkit_support |
| OLD | NEW |