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

Side by Side Diff: chrome/browser/ui/views/frame/browser_view.cc

Issue 10855118: chrome: Switch more files from views/ to ash/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | « chrome/browser/ui/views/ash/chrome_shell_delegate.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/views/frame/browser_view.h" 5 #include "chrome/browser/ui/views/frame/browser_view.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/auto_reset.h" 9 #include "base/auto_reset.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 #include "ui/views/widget/widget.h" 112 #include "ui/views/widget/widget.h"
113 #include "ui/views/window/dialog_delegate.h" 113 #include "ui/views/window/dialog_delegate.h"
114 114
115 #if defined(USE_ASH) 115 #if defined(USE_ASH)
116 #include "ash/launcher/launcher.h" 116 #include "ash/launcher/launcher.h"
117 #include "ash/launcher/launcher_model.h" 117 #include "ash/launcher/launcher_model.h"
118 #include "ash/shell.h" 118 #include "ash/shell.h"
119 #include "chrome/browser/ui/ash/ash_util.h" 119 #include "chrome/browser/ui/ash/ash_util.h"
120 #include "chrome/browser/ui/ash/launcher/browser_launcher_item_controller.h" 120 #include "chrome/browser/ui/ash/launcher/browser_launcher_item_controller.h"
121 #include "chrome/browser/ui/views/ash/chrome_shell_delegate.h" 121 #include "chrome/browser/ui/views/ash/chrome_shell_delegate.h"
122 #include "chrome/browser/ui/views/ash/window_positioner.h" 122 #include "chrome/browser/ui/ash/window_positioner.h"
123 #elif defined(OS_WIN) && !defined(USE_AURA) 123 #elif defined(OS_WIN) && !defined(USE_AURA)
124 #include "base/win/metro.h" 124 #include "base/win/metro.h"
125 #include "chrome/browser/jumplist_win.h" 125 #include "chrome/browser/jumplist_win.h"
126 #include "chrome/browser/ui/views/omnibox/omnibox_view_win.h" 126 #include "chrome/browser/ui/views/omnibox/omnibox_view_win.h"
127 #include "ui/views/widget/native_widget_win.h" 127 #include "ui/views/widget/native_widget_win.h"
128 #endif 128 #endif
129 129
130 #if defined(USE_AURA) 130 #if defined(USE_AURA)
131 #include "chrome/browser/ui/views/accelerator_table.h" 131 #include "chrome/browser/ui/views/accelerator_table.h"
132 #include "chrome/browser/ui/views/search_view_controller.h" 132 #include "chrome/browser/ui/views/search_view_controller.h"
(...skipping 2470 matching lines...) Expand 10 before | Expand all | Expand 10 after
2603 2603
2604 Browser* modal_browser = 2604 Browser* modal_browser =
2605 browser::FindBrowserWithWebContents(active_dialog->web_contents()); 2605 browser::FindBrowserWithWebContents(active_dialog->web_contents());
2606 if (modal_browser && (browser_ != modal_browser)) { 2606 if (modal_browser && (browser_ != modal_browser)) {
2607 modal_browser->window()->FlashFrame(true); 2607 modal_browser->window()->FlashFrame(true);
2608 modal_browser->window()->Activate(); 2608 modal_browser->window()->Activate();
2609 } 2609 }
2610 2610
2611 AppModalDialogQueue::GetInstance()->ActivateModalDialog(); 2611 AppModalDialogQueue::GetInstance()->ActivateModalDialog();
2612 } 2612 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/ash/chrome_shell_delegate.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698