mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-03-03 03:17:55 +01:00
- Fix ASSERT in CefBrowserImpl::UIT_GetPagesCount() when no default printer is configured (Issue #20). - Remove non-existent WebFrame objects while iterating over the bound object list in CefJSContainer::BindToJavascript(). WebFrame objects are destroyed when navigating from a page with more frames to a page with less frames. If we don't remove the non-existent frames they will remain in the list until the browser window is destroyed. - Don't call UIT_* functions from class destructors as destruction may occur on a different thread. libcef: Update due to underlying chromium changes. - Header file locations changed from third_party/WebKit/WebKit to webkit/api as a result of WebKit unforking. - Project file locations changed due to GYP now being used for WebKit builds. - Add simple_clipboard_impl.cc in the libcef directory because it has been moved from webkit/glue to test_shell. - Changes related to navigation. - New parameters added to WebViewDelegate methods. libcef_dll: Update due to underlying chromium changes. - webkit_resources.rc and webkit_strings_en-US.rc moved from grit_derived_sources to obj/global_intermediate/webkit. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@24 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
26 lines
634 B
C++
26 lines
634 B
C++
// 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 "page_range.h"
|
|
|
|
#include "base/stl_util-inl.h"
|
|
|
|
namespace printing {
|
|
|
|
std::vector<int> PageRange::GetPages(const PageRanges& ranges) {
|
|
std::set<int> pages;
|
|
for (unsigned i = 0; i < ranges.size(); ++i) {
|
|
const PageRange& range = ranges[i];
|
|
// Ranges are inclusive.
|
|
for (int i = range.from; i <= range.to; ++i) {
|
|
pages.insert(i);
|
|
}
|
|
}
|
|
return SetToVector(pages);
|
|
}
|
|
|
|
} // namespace printing
|
|
|