summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
Diffstat (limited to 'content')
-rw-r--r--content/browser/renderer_host/pepper_file_message_filter.cc3
-rw-r--r--content/public/common/frame_navigate_params.cc1
2 files changed, 3 insertions, 1 deletions
diff --git a/content/browser/renderer_host/pepper_file_message_filter.cc b/content/browser/renderer_host/pepper_file_message_filter.cc
index 44a796c..fc01a16 100644
--- a/content/browser/renderer_host/pepper_file_message_filter.cc
+++ b/content/browser/renderer_host/pepper_file_message_filter.cc
@@ -39,7 +39,8 @@ const int kWritePermissions = base::PLATFORM_FILE_OPEN |
PepperFileMessageFilter::PepperFileMessageFilter(
int child_id, content::BrowserContext* browser_context)
- : child_id_(child_id) {
+ : child_id_(child_id),
+ channel_(NULL) {
pepper_path_ =
browser_context->GetPath().Append(FILE_PATH_LITERAL("Pepper Data"));
}
diff --git a/content/public/common/frame_navigate_params.cc b/content/public/common/frame_navigate_params.cc
index c031cc8..933edf1 100644
--- a/content/public/common/frame_navigate_params.cc
+++ b/content/public/common/frame_navigate_params.cc
@@ -8,6 +8,7 @@ namespace content {
FrameNavigateParams::FrameNavigateParams()
: page_id(0),
+ transition(PAGE_TRANSITION_LINK),
should_update_history(false) {
}