Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4393)

Unified Diff: chrome/browser/ui/views/frame/native_browser_frame_factory_win.cc

Issue 23523018: Fixes use after free during drag and drop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge 2 trunk Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/frame/native_browser_frame_factory_win.cc
diff --git a/chrome/browser/ui/views/frame/native_browser_frame_factory_win.cc b/chrome/browser/ui/views/frame/native_browser_frame_factory_win.cc
new file mode 100644
index 0000000000000000000000000000000000000000..a483b5571537b43119231d022a3afaa6e6aeddd7
--- /dev/null
+++ b/chrome/browser/ui/views/frame/native_browser_frame_factory_win.cc
@@ -0,0 +1,13 @@
+// Copyright (c) 2013 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 "chrome/browser/ui/views/frame/native_browser_frame_factory.h"
+
+#include "chrome/browser/ui/views/frame/browser_frame_win.h"
+
+NativeBrowserFrame* NativeBrowserFrameFactory::Create(
+ BrowserFrame* browser_frame,
+ BrowserView* browser_view) {
+ return new BrowserFrameWin(browser_frame, browser_view);
+}
« no previous file with comments | « chrome/browser/ui/views/frame/native_browser_frame_factory_aura.cc ('k') | chrome/browser/ui/views/tabs/tab_drag_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698