Skip to content
Snippets Groups Projects
Commit 4c08cd37 authored by pkasting@chromium.org's avatar pkasting@chromium.org
Browse files

Stub a function for Mac to get it to compile with my recent change.

TBR=pinkerton
Review URL: http://codereview.chromium.org/20424

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9884 0039d316-1c4b-4281-b951-d872f2087c98
parent f30db973
No related branches found
No related tags found
No related merge requests found
......@@ -36,6 +36,7 @@ class BrowserWindowCocoa : public BrowserWindow {
virtual gfx::Rect GetNormalBounds() const;
virtual bool IsMaximized() const;
virtual LocationBar* GetLocationBar() const;
virtual void SetFocusToLocationBar();
virtual void UpdateStopGoState(bool is_loading);
virtual void UpdateToolbar(TabContents* contents,
bool should_restore_state);
......
......@@ -95,6 +95,10 @@ LocationBar* BrowserWindowCocoa::GetLocationBar() const {
return [controller_ locationBar];
}
void BrowserWindowCocoa::SetFocusToLocationBar() {
NOTIMPLEMENTED();
}
void BrowserWindowCocoa::UpdateStopGoState(bool is_loading) {
NOTIMPLEMENTED();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment