blob: 2f6021a3c53dd7f8aedfcfbaa1b73c74f04925da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// 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 "chrome/browser/browser_window.h"
#include <windows.h>
void BrowserWindow::InfoBubbleClosing() {
// TODO(beng): (Cleanup) - move out of here!
HWND hwnd = static_cast<HWND>(GetPlatformID());
// The frame is really inactive, send notification now.
DefWindowProc(hwnd, WM_NCACTIVATE, FALSE, 0);
}
|