mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-09 16:48:49 +01:00
- Add support for embedded netscape-style plugins. - Add new webkit_glue VisitedLinkHash() and IsLinkVisited() functions required by underlying chromium changes. cefclient: - Add sample netscape-style plugin implementation and related Plugin item on the Tests menu. - Increase the speed of the update timer so that buttons refresh closer to real-time. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@5 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
87 lines
2.3 KiB
C++
87 lines
2.3 KiB
C++
// Copyright (c) 2008 The Chromium Embedded Framework Authors.
|
|
// Portions copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "precompiled_libcef.h"
|
|
#include "browser_plugin_stream_url.h"
|
|
#include "browser_plugin_instance.h"
|
|
|
|
#include "webkit/glue/glue_util.h"
|
|
#include "webkit/glue/webplugin.h"
|
|
#include "webkit/glue/plugins/plugin_host.h"
|
|
|
|
namespace NPAPI {
|
|
|
|
BrowserPluginStreamUrl::BrowserPluginStreamUrl(
|
|
int resource_id,
|
|
const GURL &url,
|
|
BrowserPluginInstance *instance,
|
|
bool notify_needed,
|
|
void *notify_data)
|
|
: BrowserPluginStream(instance, url.spec().c_str(), notify_needed, notify_data),
|
|
url_(url),
|
|
id_(resource_id) {
|
|
}
|
|
|
|
BrowserPluginStreamUrl::~BrowserPluginStreamUrl() {
|
|
}
|
|
|
|
bool BrowserPluginStreamUrl::Close(NPReason reason) {
|
|
CancelRequest();
|
|
bool result = BrowserPluginStream::Close(reason);
|
|
instance()->RemoveStream(this);
|
|
return result;
|
|
}
|
|
|
|
void BrowserPluginStreamUrl::WillSendRequest(const GURL& url) {
|
|
url_ = url;
|
|
UpdateUrl(url.spec().c_str());
|
|
}
|
|
|
|
void BrowserPluginStreamUrl::DidReceiveResponse(const std::string& mime_type,
|
|
const std::string& headers,
|
|
uint32 expected_length,
|
|
uint32 last_modified,
|
|
bool* cancel) {
|
|
bool opened = Open(mime_type,
|
|
headers,
|
|
expected_length,
|
|
last_modified);
|
|
if (!opened) {
|
|
instance()->RemoveStream(this);
|
|
*cancel = true;
|
|
}
|
|
}
|
|
|
|
void BrowserPluginStreamUrl::DidReceiveData(const char* buffer, int length,
|
|
int data_offset) {
|
|
if (!open())
|
|
return;
|
|
|
|
if (length > 0)
|
|
Write(const_cast<char*>(buffer), length, data_offset);
|
|
}
|
|
|
|
void BrowserPluginStreamUrl::DidFinishLoading() {
|
|
if (!seekable()) {
|
|
Close(NPRES_DONE);
|
|
}
|
|
}
|
|
|
|
void BrowserPluginStreamUrl::DidFail() {
|
|
Close(NPRES_NETWORK_ERR);
|
|
}
|
|
|
|
void BrowserPluginStreamUrl::CancelRequest() {
|
|
if (id_ > 0) {
|
|
if (instance()->webplugin()) {
|
|
instance()->webplugin()->CancelResource(id_);
|
|
}
|
|
id_ = 0;
|
|
}
|
|
}
|
|
|
|
} // namespace NPAPI
|
|
|