diff options
author | Daniel Cheng <dcheng@chromium.org> | 2014-10-06 20:22:19 -0700 |
---|---|---|
committer | Daniel Cheng <dcheng@chromium.org> | 2014-10-07 03:23:01 +0000 |
commit | d42a8f8372389ff80a2f0f55b8826318a6ed2c93 (patch) | |
tree | 21d3f15ac47b219ac38c0aaf59fd3ed0855d8049 /chrome/browser/extensions/extension_message_bubble.h | |
parent | d974ccd44609e4c7e4412f1af80818b81504851f (diff) | |
download | chromium_src-d42a8f8372389ff80a2f0f55b8826318a6ed2c93.zip chromium_src-d42a8f8372389ff80a2f0f55b8826318a6ed2c93.tar.gz chromium_src-d42a8f8372389ff80a2f0f55b8826318a6ed2c93.tar.bz2 |
Rewrite line endings from CRLF to LF for a bunch of files.
There's a lot of other files with CRLF line endings in test data,
third_party, and tools. Out of caution, those files have been left
unchanged, in case anything depends on the CRLF being present.
BUG=420796
TBR=darin@chromium.org, rsleevi@chromium.org, sky@chromium.org
Review URL: https://codereview.chromium.org/630333002
Cr-Commit-Position: refs/heads/master@{#298348}
Diffstat (limited to 'chrome/browser/extensions/extension_message_bubble.h')
-rw-r--r-- | chrome/browser/extensions/extension_message_bubble.h | 68 |
1 files changed, 34 insertions, 34 deletions
diff --git a/chrome/browser/extensions/extension_message_bubble.h b/chrome/browser/extensions/extension_message_bubble.h index bdce711..71d6e30 100644 --- a/chrome/browser/extensions/extension_message_bubble.h +++ b/chrome/browser/extensions/extension_message_bubble.h @@ -1,34 +1,34 @@ -// Copyright (c) 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_EXTENSIONS_EXTENSION_MESSAGE_BUBBLE_H_
-#define CHROME_BROWSER_EXTENSIONS_EXTENSION_MESSAGE_BUBBLE_H_
-
-#include "base/bind.h"
-
-class Browser;
-
-namespace extensions {
-
-// The interface between the SuspiciousExtensionBubble bubble and its
-// controller.
-class ExtensionMessageBubble {
- public:
- // Setup the callback for when the action button is clicked in the
- // bubble.
- virtual void OnActionButtonClicked(const base::Closure& callback) = 0;
-
- // Setup the callback for when the dismiss button is clicked.
- virtual void OnDismissButtonClicked(const base::Closure& callback) = 0;
-
- // Setup the callback for when the link is clicked in the bubble.
- virtual void OnLinkClicked(const base::Closure& callback) = 0;
-
- // Instruct the bubble to appear.
- virtual void Show() = 0;
-};
-
-} // namespace extensions
-
-#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_MESSAGE_BUBBLE_H_
+// Copyright (c) 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_EXTENSIONS_EXTENSION_MESSAGE_BUBBLE_H_ +#define CHROME_BROWSER_EXTENSIONS_EXTENSION_MESSAGE_BUBBLE_H_ + +#include "base/bind.h" + +class Browser; + +namespace extensions { + +// The interface between the SuspiciousExtensionBubble bubble and its +// controller. +class ExtensionMessageBubble { + public: + // Setup the callback for when the action button is clicked in the + // bubble. + virtual void OnActionButtonClicked(const base::Closure& callback) = 0; + + // Setup the callback for when the dismiss button is clicked. + virtual void OnDismissButtonClicked(const base::Closure& callback) = 0; + + // Setup the callback for when the link is clicked in the bubble. + virtual void OnLinkClicked(const base::Closure& callback) = 0; + + // Instruct the bubble to appear. + virtual void Show() = 0; +}; + +} // namespace extensions + +#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_MESSAGE_BUBBLE_H_ |