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

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

Issue 8934011: Rename IntentsHost -> WebIntentsDispatcher and IntentsDispatcher -> WebIntentsHost. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_BROWSER_H_ 5 #ifndef CHROME_BROWSER_UI_BROWSER_H_
6 #define CHROME_BROWSER_UI_BROWSER_H_ 6 #define CHROME_BROWSER_UI_BROWSER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 987 matching lines...) Expand 10 before | Expand all | Expand 10 after
998 virtual void RegisterProtocolHandler(TabContents* tab, 998 virtual void RegisterProtocolHandler(TabContents* tab,
999 const std::string& protocol, 999 const std::string& protocol,
1000 const GURL& url, 1000 const GURL& url,
1001 const string16& title) OVERRIDE; 1001 const string16& title) OVERRIDE;
1002 virtual void RegisterIntentHandler(TabContents* tab, 1002 virtual void RegisterIntentHandler(TabContents* tab,
1003 const string16& action, 1003 const string16& action,
1004 const string16& type, 1004 const string16& type,
1005 const string16& href, 1005 const string16& href,
1006 const string16& title, 1006 const string16& title,
1007 const string16& disposition) OVERRIDE; 1007 const string16& disposition) OVERRIDE;
1008 virtual void WebIntentDispatch(TabContents* tab, 1008 virtual void WebIntentDispatch(
1009 content::IntentsHost* intents_host) OVERRIDE; 1009 TabContents* tab,
1010 content::WebIntentsDispatcher* intents_dispatcher) OVERRIDE;
1010 virtual void UpdatePreferredSize(TabContents* source, 1011 virtual void UpdatePreferredSize(TabContents* source,
1011 const gfx::Size& pref_size) OVERRIDE; 1012 const gfx::Size& pref_size) OVERRIDE;
1012 1013
1013 virtual void FindReply(TabContents* tab, 1014 virtual void FindReply(TabContents* tab,
1014 int request_id, 1015 int request_id,
1015 int number_of_matches, 1016 int number_of_matches,
1016 const gfx::Rect& selection_rect, 1017 const gfx::Rect& selection_rect,
1017 int active_match_ordinal, 1018 int active_match_ordinal,
1018 bool final_update) OVERRIDE; 1019 bool final_update) OVERRIDE;
1019 1020
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after
1429 1430
1430 scoped_refptr<FullscreenController> fullscreen_controller_; 1431 scoped_refptr<FullscreenController> fullscreen_controller_;
1431 1432
1432 // True if the browser window has been shown at least once. 1433 // True if the browser window has been shown at least once.
1433 bool window_has_shown_; 1434 bool window_has_shown_;
1434 1435
1435 DISALLOW_COPY_AND_ASSIGN(Browser); 1436 DISALLOW_COPY_AND_ASSIGN(Browser);
1436 }; 1437 };
1437 1438
1438 #endif // CHROME_BROWSER_UI_BROWSER_H_ 1439 #endif // CHROME_BROWSER_UI_BROWSER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698