Chromium Code Reviews| Index: chrome/browser/ui/bookmarks/bookmark_bubble_delegate.h |
| diff --git a/chrome/browser/ui/bookmarks/bookmark_bubble_delegate.h b/chrome/browser/ui/bookmarks/bookmark_bubble_delegate.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..dccaa86e64e5cff27c5ea4a6b5af7a907f2bbba4 |
| --- /dev/null |
| +++ b/chrome/browser/ui/bookmarks/bookmark_bubble_delegate.h |
| @@ -0,0 +1,14 @@ |
| +// Copyright 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_BUBBLE_DELEGATE_H_ |
| +#define CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_BUBBLE_DELEGATE_H_ |
| + |
| +class BookmarkBubbleDelegate { |
| + public: |
| + virtual void OnSignInLinkClicked() = 0; |
| + virtual ~BookmarkBubbleDelegate() {} |
|
sky
2013/07/17 16:08:02
destructor before other methods.
fdoray
2013/07/17 19:39:56
Done.
|
| +}; |
| + |
| +#endif // CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_BUBBLE_DELEGATE_H_ |