summaryrefslogtreecommitdiffstats
path: root/ceee/common/windows_constants.cc
blob: 156227297ac6c57b1dc0e3942a7cd9f4569f0b90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (c) 2010 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.
//
// Constants for things in the Windows environment (window class names,
// process names, etc.)

#include "ceee/common/windows_constants.h"

namespace windows {

const wchar_t kExplorerModuleName[] = L"explorer.exe";
const wchar_t kDesktopWindowClass[] = L"#32769";
const wchar_t kIeTabWindowClass[] = L"TabWindowClass";
const wchar_t kIeFrameWindowClass[] = L"IEFrame";
const wchar_t kHiddenIeFrameWindowClass[] = L"Internet Explorer_Hidden";
const wchar_t kIeTabContentParentWindowClass[] = L"Shell DocObject View";
const wchar_t kIeTabContentWindowClass[] = L"Internet Explorer_Server";
const wchar_t kShellTrayWindowClass[] = L"Shell_TrayWnd";
const wchar_t kTrayNotifyWindowClass[] = L"TrayNotifyWnd";

}  // namespace windows