mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-20 05:38:03 +01:00
2ba756d3e1
- Restore CefRenderHandler::OnScrollOffsetChanged. - Add new RT_PING and RT_SERVICE_WORKER resource type values. - The resource type for image sub-resource loads has changed from RT_IMAGE to RT_PREFETCH (this is a regression, see http://crbug.com/415253#c23). - Add a patch to fix a crash in Scheduler::swapQueuesRunPendingTasks* (http://crbug.com/415478). - Add documentation for cef_key_event_type_t values. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1846 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
21 lines
597 B
C++
21 lines
597 B
C++
// Copyright (c) 2012 The Chromium Embedded Framework Authors.
|
|
// Portions copyright (c) 2012 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 "libcef/browser/navigate_params.h"
|
|
|
|
CefNavigateParams::CefNavigateParams(
|
|
const GURL& a_url,
|
|
ui::PageTransition a_transition)
|
|
: url(a_url),
|
|
frame_id(-1),
|
|
disposition(CURRENT_TAB),
|
|
transition(a_transition),
|
|
is_renderer_initiated(false),
|
|
user_gesture(true) {
|
|
}
|
|
|
|
CefNavigateParams::~CefNavigateParams() {
|
|
}
|