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

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

Issue 3174030: Making window.focus()/blur() work only when there is a user gesture. (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: Created 10 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
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 #ifndef CHROME_BROWSER_DEBUGGER_DEVTOOLS_WINDOW_H_ 5 #ifndef CHROME_BROWSER_DEBUGGER_DEVTOOLS_WINDOW_H_
6 #define CHROME_BROWSER_DEBUGGER_DEVTOOLS_WINDOW_H_ 6 #define CHROME_BROWSER_DEBUGGER_DEVTOOLS_WINDOW_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 WindowOpenDisposition disposition, 76 WindowOpenDisposition disposition,
77 PageTransition::Type transition) {} 77 PageTransition::Type transition) {}
78 virtual void NavigationStateChanged(const TabContents* source, 78 virtual void NavigationStateChanged(const TabContents* source,
79 unsigned changed_flags) {} 79 unsigned changed_flags) {}
80 virtual void AddNewContents(TabContents* source, 80 virtual void AddNewContents(TabContents* source,
81 TabContents* new_contents, 81 TabContents* new_contents,
82 WindowOpenDisposition disposition, 82 WindowOpenDisposition disposition,
83 const gfx::Rect& initial_pos, 83 const gfx::Rect& initial_pos,
84 bool user_gesture) {} 84 bool user_gesture) {}
85 virtual void ActivateContents(TabContents* contents) {} 85 virtual void ActivateContents(TabContents* contents) {}
86 virtual void DeactivateContents(TabContents* contents) {}
86 virtual void LoadingStateChanged(TabContents* source) {} 87 virtual void LoadingStateChanged(TabContents* source) {}
87 virtual void CloseContents(TabContents* source) {} 88 virtual void CloseContents(TabContents* source) {}
88 virtual void MoveContents(TabContents* source, const gfx::Rect& pos) {} 89 virtual void MoveContents(TabContents* source, const gfx::Rect& pos) {}
89 virtual bool CanReloadContents(TabContents* source) const { return false; } 90 virtual bool CanReloadContents(TabContents* source) const { return false; }
90 virtual void URLStarredChanged(TabContents* source, bool starred) {} 91 virtual void URLStarredChanged(TabContents* source, bool starred) {}
91 virtual void UpdateTargetURL(TabContents* source, const GURL& url) {} 92 virtual void UpdateTargetURL(TabContents* source, const GURL& url) {}
92 virtual void ToolbarSizeChanged(TabContents* source, bool is_animating) {} 93 virtual void ToolbarSizeChanged(TabContents* source, bool is_animating) {}
93 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event, 94 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event,
94 bool* is_keyboard_shortcut); 95 bool* is_keyboard_shortcut);
95 virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event); 96 virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event);
96 97
97 Profile* profile_; 98 Profile* profile_;
98 TabContents* inspected_tab_; 99 TabContents* inspected_tab_;
99 TabContents* tab_contents_; 100 TabContents* tab_contents_;
100 Browser* browser_; 101 Browser* browser_;
101 bool docked_; 102 bool docked_;
102 bool is_loaded_; 103 bool is_loaded_;
103 DevToolsToggleAction action_on_load_; 104 DevToolsToggleAction action_on_load_;
104 NotificationRegistrar registrar_; 105 NotificationRegistrar registrar_;
105 DISALLOW_COPY_AND_ASSIGN(DevToolsWindow); 106 DISALLOW_COPY_AND_ASSIGN(DevToolsWindow);
106 }; 107 };
107 108
108 #endif // CHROME_BROWSER_DEBUGGER_DEVTOOLS_WINDOW_H_ 109 #endif // CHROME_BROWSER_DEBUGGER_DEVTOOLS_WINDOW_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/web_page_screen.h ('k') | chrome/browser/dom_ui/html_dialog_tab_contents_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698