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

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

Issue 48963002: [Refactor] Move the non-browser specific logic of ImmersiveModeControllerAsh into ash part 2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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/frame/immersive_mode_controller_stub.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/immersive_mode_controller_stub.h" 5 #include "chrome/browser/ui/views/frame/immersive_mode_controller_stub.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 ImmersiveModeControllerStub::ImmersiveModeControllerStub() { 9 ImmersiveModeControllerStub::ImmersiveModeControllerStub() {
10 } 10 }
11 11
12 ImmersiveModeControllerStub::~ImmersiveModeControllerStub() { 12 ImmersiveModeControllerStub::~ImmersiveModeControllerStub() {
13 } 13 }
14 14
15 void ImmersiveModeControllerStub::Init( 15 void ImmersiveModeControllerStub::Init(BrowserView* browser_view) {
16 Delegate* delegate,
17 views::Widget* widget,
18 views::View* top_container) {
19 } 16 }
20 17
21 void ImmersiveModeControllerStub::SetEnabled(bool enabled) { 18 void ImmersiveModeControllerStub::SetEnabled(bool enabled) {
22 NOTREACHED(); 19 NOTREACHED();
23 } 20 }
24 21
25 bool ImmersiveModeControllerStub::IsEnabled() const { 22 bool ImmersiveModeControllerStub::IsEnabled() const {
26 return false; 23 return false;
27 } 24 }
28 25
(...skipping 18 matching lines...) Expand all
47 AnimateReveal animate_reveal) { 44 AnimateReveal animate_reveal) {
48 return NULL; 45 return NULL;
49 } 46 }
50 47
51 void ImmersiveModeControllerStub::OnFindBarVisibleBoundsChanged( 48 void ImmersiveModeControllerStub::OnFindBarVisibleBoundsChanged(
52 const gfx::Rect& new_visible_bounds_in_screen) { 49 const gfx::Rect& new_visible_bounds_in_screen) {
53 } 50 }
54 51
55 void ImmersiveModeControllerStub::SetupForTest() { 52 void ImmersiveModeControllerStub::SetupForTest() {
56 } 53 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/frame/immersive_mode_controller_stub.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698