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

Side by Side Diff: chrome/browser/ui/gtk/browser_window_gtk.h

Issue 10933085: Update ConstrainedWindowViews appearance according to mock (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review updates Created 8 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 | Annotate | Revision Log
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 #ifndef CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ 5 #ifndef CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_
6 #define CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ 6 #define CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_
7 7
8 #include <gtk/gtk.h> 8 #include <gtk/gtk.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 virtual void Cut() OVERRIDE; 156 virtual void Cut() OVERRIDE;
157 virtual void Copy() OVERRIDE; 157 virtual void Copy() OVERRIDE;
158 virtual void Paste() OVERRIDE; 158 virtual void Paste() OVERRIDE;
159 virtual void ShowInstant(TabContents* preview) OVERRIDE; 159 virtual void ShowInstant(TabContents* preview) OVERRIDE;
160 virtual void HideInstant() OVERRIDE; 160 virtual void HideInstant() OVERRIDE;
161 virtual gfx::Rect GetInstantBounds() OVERRIDE; 161 virtual gfx::Rect GetInstantBounds() OVERRIDE;
162 virtual bool IsInstantTabShowing() OVERRIDE; 162 virtual bool IsInstantTabShowing() OVERRIDE;
163 virtual WindowOpenDisposition GetDispositionForPopupBounds( 163 virtual WindowOpenDisposition GetDispositionForPopupBounds(
164 const gfx::Rect& bounds) OVERRIDE; 164 const gfx::Rect& bounds) OVERRIDE;
165 virtual FindBar* CreateFindBar() OVERRIDE; 165 virtual FindBar* CreateFindBar() OVERRIDE;
166 virtual int GetConstrainedWindowTopY() OVERRIDE;
166 virtual void ShowAvatarBubble(content::WebContents* web_contents, 167 virtual void ShowAvatarBubble(content::WebContents* web_contents,
167 const gfx::Rect& rect) OVERRIDE; 168 const gfx::Rect& rect) OVERRIDE;
168 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; 169 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE;
169 virtual void ShowPasswordGenerationBubble( 170 virtual void ShowPasswordGenerationBubble(
170 const gfx::Rect& rect, 171 const gfx::Rect& rect,
171 const webkit::forms::PasswordForm& form, 172 const webkit::forms::PasswordForm& form,
172 autofill::PasswordGenerator* password_generator) OVERRIDE; 173 autofill::PasswordGenerator* password_generator) OVERRIDE;
173 174
174 // Overridden from NotificationObserver: 175 // Overridden from NotificationObserver:
175 virtual void Observe(int type, 176 virtual void Observe(int type,
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; 562 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_;
562 563
563 FullscreenExitBubbleType fullscreen_exit_bubble_type_; 564 FullscreenExitBubbleType fullscreen_exit_bubble_type_;
564 565
565 content::NotificationRegistrar registrar_; 566 content::NotificationRegistrar registrar_;
566 567
567 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); 568 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk);
568 }; 569 };
569 570
570 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ 571 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698