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

Side by Side Diff: chrome/browser/renderer_context_menu/render_view_context_menu_browsertest_util.h

Issue 339153002: Use suggested filename for "Save Link As" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added test case Created 6 years, 6 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_RENDERER_CONTEXT_MENU_RENDER_VIEW_CONTEXT_MENU_BROWSERTES T_UTIL_H_ 5 #ifndef CHROME_BROWSER_RENDERER_CONTEXT_MENU_RENDER_VIEW_CONTEXT_MENU_BROWSERTES T_UTIL_H_
6 #define CHROME_BROWSER_RENDERER_CONTEXT_MENU_RENDER_VIEW_CONTEXT_MENU_BROWSERTES T_UTIL_H_ 6 #define CHROME_BROWSER_RENDERER_CONTEXT_MENU_RENDER_VIEW_CONTEXT_MENU_BROWSERTES T_UTIL_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/strings/string16.h"
9 #include "content/public/browser/notification_observer.h" 10 #include "content/public/browser/notification_observer.h"
10 #include "content/public/browser/notification_registrar.h" 11 #include "content/public/browser/notification_registrar.h"
11 12
12 class RenderViewContextMenu; 13 class RenderViewContextMenu;
13 14
14 class ContextMenuNotificationObserver : public content::NotificationObserver { 15 class ContextMenuNotificationObserver : public content::NotificationObserver {
15 public: 16 public:
16 // Wait for a context menu to be shown, and then execute |command_to_execute|. 17 // Wait for a context menu to be shown, and then execute |command_to_execute|.
17 explicit ContextMenuNotificationObserver(int command_to_execute); 18 explicit ContextMenuNotificationObserver(int command_to_execute);
18 virtual ~ContextMenuNotificationObserver(); 19 virtual ~ContextMenuNotificationObserver();
19 20
21 // Suggested filename for file downloaded through "Save Link As" option.
22 base::string16 GetSuggestedFilename();
23
20 private: 24 private:
21 virtual void Observe(int type, 25 virtual void Observe(int type,
22 const content::NotificationSource& source, 26 const content::NotificationSource& source,
23 const content::NotificationDetails& details) OVERRIDE; 27 const content::NotificationDetails& details) OVERRIDE;
24 28
25 void ExecuteCommand(RenderViewContextMenu* context_menu); 29 void ExecuteCommand(RenderViewContextMenu* context_menu);
26 30
31 RenderViewContextMenu* context_menu_;
27 content::NotificationRegistrar registrar_; 32 content::NotificationRegistrar registrar_;
28 int command_to_execute_; 33 int command_to_execute_;
29 34
30 DISALLOW_COPY_AND_ASSIGN(ContextMenuNotificationObserver); 35 DISALLOW_COPY_AND_ASSIGN(ContextMenuNotificationObserver);
31 }; 36 };
32 37
33 #endif // CHROME_BROWSER_RENDERER_CONTEXT_MENU_RENDER_VIEW_CONTEXT_MENU_BROWSER TEST_UTIL_H_ 38 #endif // CHROME_BROWSER_RENDERER_CONTEXT_MENU_RENDER_VIEW_CONTEXT_MENU_BROWSER TEST_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698