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

Side by Side Diff: chrome/browser/debugger/devtools_window.h

Issue 164547: Mac: make save/open dialogs operate as tab-modal sheets.... Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Painfully (but hopefully correctly) merged ToT. Created 11 years, 2 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/cocoa/toolbar_controller.mm ('k') | chrome/browser/download/download_manager.cc » ('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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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_DEBUGGER_DEV_TOOLS_WINDOW_H_ 5 #ifndef CHROME_BROWSER_DEBUGGER_DEV_TOOLS_WINDOW_H_
6 #define CHROME_BROWSER_DEBUGGER_DEV_TOOLS_WINDOW_H_ 6 #define CHROME_BROWSER_DEBUGGER_DEV_TOOLS_WINDOW_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 WindowOpenDisposition disposition, 70 WindowOpenDisposition disposition,
71 const gfx::Rect& initial_pos, 71 const gfx::Rect& initial_pos,
72 bool user_gesture) {} 72 bool user_gesture) {}
73 virtual void ActivateContents(TabContents* contents) {} 73 virtual void ActivateContents(TabContents* contents) {}
74 virtual void LoadingStateChanged(TabContents* source) {} 74 virtual void LoadingStateChanged(TabContents* source) {}
75 virtual void CloseContents(TabContents* source) {} 75 virtual void CloseContents(TabContents* source) {}
76 virtual void MoveContents(TabContents* source, const gfx::Rect& pos) {} 76 virtual void MoveContents(TabContents* source, const gfx::Rect& pos) {}
77 virtual bool IsPopup(TabContents* source) { return false; } 77 virtual bool IsPopup(TabContents* source) { return false; }
78 virtual void URLStarredChanged(TabContents* source, bool starred) {} 78 virtual void URLStarredChanged(TabContents* source, bool starred) {}
79 virtual void UpdateTargetURL(TabContents* source, const GURL& url) {} 79 virtual void UpdateTargetURL(TabContents* source, const GURL& url) {}
80 virtual void ChildWindowsChanged(TabContents* source) {}
80 virtual void ToolbarSizeChanged(TabContents* source, bool is_animating) {} 81 virtual void ToolbarSizeChanged(TabContents* source, bool is_animating) {}
81 82
82 Profile* profile_; 83 Profile* profile_;
83 TabContents* inspected_tab_; 84 TabContents* inspected_tab_;
84 TabContents* tab_contents_; 85 TabContents* tab_contents_;
85 Browser* browser_; 86 Browser* browser_;
86 BrowserWindow* inspected_window_; 87 BrowserWindow* inspected_window_;
87 bool docked_; 88 bool docked_;
88 NotificationRegistrar registrar_; 89 NotificationRegistrar registrar_;
89 DISALLOW_COPY_AND_ASSIGN(DevToolsWindow); 90 DISALLOW_COPY_AND_ASSIGN(DevToolsWindow);
90 }; 91 };
91 92
92 #endif // CHROME_BROWSER_DEBUGGER_DEV_TOOLS_WINDOW_H_ 93 #endif // CHROME_BROWSER_DEBUGGER_DEV_TOOLS_WINDOW_H_
OLDNEW
« no previous file with comments | « chrome/browser/cocoa/toolbar_controller.mm ('k') | chrome/browser/download/download_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698