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

Side by Side Diff: ui/base/window_open_disposition.cc

Issue 11896047: Move the methods in disposition_utils.h and event_disposition.h to ui\base\window_open_disposition.… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix regex in ui.gyp Created 7 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/base/window_open_disposition.h ('k') | ui/ui.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "ui/base/window_open_disposition.h"
6
7 #include "build/build_config.h"
8 #include "ui/base/events/event_constants.h"
9
10 namespace ui {
11
12 WindowOpenDisposition DispositionFromClick(bool middle_button,
13 bool alt_key,
14 bool ctrl_key,
15 bool meta_key,
16 bool shift_key) {
17 // MacOS uses meta key (Command key) to spawn new tabs.
18 #if defined(OS_MACOSX)
19 if (middle_button || meta_key)
20 #else
21 if (middle_button || ctrl_key)
22 #endif
23 return shift_key ? NEW_FOREGROUND_TAB : NEW_BACKGROUND_TAB;
24 if (shift_key)
25 return NEW_WINDOW;
26 if (alt_key)
27 return SAVE_TO_DISK;
28 return CURRENT_TAB;
29 }
30
31 WindowOpenDisposition DispositionFromEventFlags(int event_flags) {
32 return DispositionFromClick(
33 (event_flags & ui::EF_MIDDLE_MOUSE_BUTTON) != 0,
34 (event_flags & ui::EF_ALT_DOWN) != 0,
35 (event_flags & ui::EF_CONTROL_DOWN) != 0,
36 (event_flags & ui::EF_COMMAND_DOWN) != 0,
37 (event_flags & ui::EF_SHIFT_DOWN) != 0);
38 }
39
40 } // namespace ui
OLDNEW
« no previous file with comments | « ui/base/window_open_disposition.h ('k') | ui/ui.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698