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

Side by Side Diff: chrome/browser/cocoa/browser_window_controller_private.mm

Issue 3203008: Move prefs-related files under chrome/browser/ into a prefs/ subdir. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #import "chrome/browser/cocoa/browser_window_controller_private.h" 5 #import "chrome/browser/cocoa/browser_window_controller_private.h"
6 6
7 #include "base/mac_util.h" 7 #include "base/mac_util.h"
8 #import "base/scoped_nsobject.h" 8 #import "base/scoped_nsobject.h"
9 #include "chrome/browser/browser.h" 9 #include "chrome/browser/browser.h"
10 #include "chrome/browser/browser_list.h" 10 #include "chrome/browser/browser_list.h"
11 #include "chrome/browser/browser_process.h" 11 #include "chrome/browser/browser_process.h"
12 #import "chrome/browser/cocoa/chrome_browser_window.h" 12 #import "chrome/browser/cocoa/chrome_browser_window.h"
13 #import "chrome/browser/cocoa/fast_resize_view.h" 13 #import "chrome/browser/cocoa/fast_resize_view.h"
14 #import "chrome/browser/cocoa/find_bar_cocoa_controller.h" 14 #import "chrome/browser/cocoa/find_bar_cocoa_controller.h"
15 #import "chrome/browser/cocoa/floating_bar_backing_view.h" 15 #import "chrome/browser/cocoa/floating_bar_backing_view.h"
16 #import "chrome/browser/cocoa/fullscreen_controller.h" 16 #import "chrome/browser/cocoa/fullscreen_controller.h"
17 #import "chrome/browser/cocoa/side_tab_strip_controller.h" 17 #import "chrome/browser/cocoa/side_tab_strip_controller.h"
18 #import "chrome/browser/cocoa/tab_strip_controller.h" 18 #import "chrome/browser/cocoa/tab_strip_controller.h"
19 #import "chrome/browser/cocoa/tab_strip_view.h" 19 #import "chrome/browser/cocoa/tab_strip_view.h"
20 #import "chrome/browser/cocoa/toolbar_controller.h" 20 #import "chrome/browser/cocoa/toolbar_controller.h"
21 #include "chrome/browser/pref_service.h" 21 #include "chrome/browser/prefs/pref_service.h"
22 #include "chrome/browser/profile.h" 22 #include "chrome/browser/profile.h"
23 #include "chrome/browser/renderer_host/render_widget_host_view.h" 23 #include "chrome/browser/renderer_host/render_widget_host_view.h"
24 #include "chrome/browser/tab_contents/tab_contents.h" 24 #include "chrome/browser/tab_contents/tab_contents.h"
25 #include "chrome/browser/tab_contents/tab_contents_view.h" 25 #include "chrome/browser/tab_contents/tab_contents_view.h"
26 #include "chrome/browser/themes/browser_theme_provider.h" 26 #include "chrome/browser/themes/browser_theme_provider.h"
27 #include "chrome/common/pref_names.h" 27 #include "chrome/common/pref_names.h"
28 28
29 namespace { 29 namespace {
30 30
31 // Space between the incognito badge and the right edge of the window. 31 // Space between the incognito badge and the right edge of the window.
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 - (void)disableBarVisibilityUpdates { 497 - (void)disableBarVisibilityUpdates {
498 // Early escape if there's nothing to do. 498 // Early escape if there's nothing to do.
499 if (!barVisibilityUpdatesEnabled_) 499 if (!barVisibilityUpdatesEnabled_)
500 return; 500 return;
501 501
502 barVisibilityUpdatesEnabled_ = NO; 502 barVisibilityUpdatesEnabled_ = NO;
503 [fullscreenController_ cancelAnimationAndTimers]; 503 [fullscreenController_ cancelAnimationAndTimers];
504 } 504 }
505 505
506 @end // @implementation BrowserWindowController(Private) 506 @end // @implementation BrowserWindowController(Private)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698