| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 // This file provides the embedder's side of random webkit glue functions. | 5 // This file provides the embedder's side of random webkit glue functions. |
| 6 | 6 |
| 7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #if defined(OS_WIN) | 11 #if defined(OS_WIN) |
| 12 #include <windows.h> | 12 #include <windows.h> |
| 13 #include <wininet.h> | 13 #include <wininet.h> |
| 14 #endif | 14 #endif |
| 15 | 15 |
| 16 #include "app/clipboard/clipboard.h" | 16 #include "app/clipboard/clipboard.h" |
| 17 #include "app/clipboard/scoped_clipboard_writer.h" | 17 #include "app/clipboard/scoped_clipboard_writer.h" |
| 18 #include "app/resource_bundle.h" | 18 #include "app/resource_bundle.h" |
| 19 #include "base/string_util.h" | 19 #include "base/string_util.h" |
| 20 #include "chrome/common/chrome_switches.h" | 20 #include "chrome/common/chrome_switches.h" |
| 21 #include "chrome/common/render_messages.h" | 21 #include "chrome/common/render_messages.h" |
| 22 #include "chrome/common/url_constants.h" | 22 #include "chrome/common/url_constants.h" |
| 23 #include "chrome/plugin/npobject_util.h" | 23 #include "chrome/plugin/npobject_util.h" |
| 24 #include "chrome/renderer/net/render_dns_master.h" | 24 #include "chrome/renderer/net/render_dns_master.h" |
| 25 #include "chrome/renderer/render_process.h" | 25 #include "chrome/renderer/render_process.h" |
| 26 #include "chrome/renderer/render_thread.h" | 26 #include "chrome/renderer/render_thread.h" |
| 27 #include "chrome/renderer/socket_stream_dispatcher.h" | 27 #include "chrome/renderer/socket_stream_dispatcher.h" |
| 28 #include "googleurl/src/url_util.h" | 28 #include "googleurl/src/url_util.h" |
| 29 #include "third_party/skia/include/core/SkBitmap.h" | 29 #include "third_party/skia/include/core/SkBitmap.h" |
| 30 #include "webkit/api/public/WebKit.h" | 30 #include "third_party/WebKit/WebKit/chromium/public/WebKit.h" |
| 31 #include "webkit/api/public/WebKitClient.h" | 31 #include "third_party/WebKit/WebKit/chromium/public/WebKitClient.h" |
| 32 #include "webkit/api/public/WebString.h" | 32 #include "third_party/WebKit/WebKit/chromium/public/WebString.h" |
| 33 #include "webkit/glue/scoped_clipboard_writer_glue.h" | 33 #include "webkit/glue/scoped_clipboard_writer_glue.h" |
| 34 #include "webkit/glue/webkit_glue.h" | 34 #include "webkit/glue/webkit_glue.h" |
| 35 #include "webkit/glue/websocketstreamhandle_bridge.h" | 35 #include "webkit/glue/websocketstreamhandle_bridge.h" |
| 36 | 36 |
| 37 #if defined(OS_WIN) | 37 #if defined(OS_WIN) |
| 38 #include <strsafe.h> // note: per msdn docs, this must *follow* other includes | 38 #include <strsafe.h> // note: per msdn docs, this must *follow* other includes |
| 39 #endif | 39 #endif |
| 40 | 40 |
| 41 template <typename T, size_t stack_capacity> | 41 template <typename T, size_t stack_capacity> |
| 42 class ResizableStackArray { | 42 class ResizableStackArray { |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 | 256 |
| 257 void CloseIdleConnections() { | 257 void CloseIdleConnections() { |
| 258 RenderThread::current()->CloseIdleConnections(); | 258 RenderThread::current()->CloseIdleConnections(); |
| 259 } | 259 } |
| 260 | 260 |
| 261 void SetCacheMode(bool enabled) { | 261 void SetCacheMode(bool enabled) { |
| 262 RenderThread::current()->SetCacheMode(enabled); | 262 RenderThread::current()->SetCacheMode(enabled); |
| 263 } | 263 } |
| 264 | 264 |
| 265 } // namespace webkit_glue | 265 } // namespace webkit_glue |
| OLD | NEW |