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

Side by Side Diff: content/public/browser/notification_types.h

Issue 10560022: Browser Plugin: New Implementation (Browser Side) (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Address some of creis@'s comments. Handing off to Istiaque as I head for vacation. Created 8 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « content/content_tests.gypi ('k') | content/renderer/browser_plugin/browser_plugin.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CONTENT_PUBLIC_BROWSER_NOTIFICATION_TYPES_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_NOTIFICATION_TYPES_H_
6 #define CONTENT_PUBLIC_BROWSER_NOTIFICATION_TYPES_H_ 6 #define CONTENT_PUBLIC_BROWSER_NOTIFICATION_TYPES_H_
7 7
8 // This file describes various types used to describe and filter notifications 8 // This file describes various types used to describe and filter notifications
9 // that pass through the NotificationService. 9 // that pass through the NotificationService.
10 // 10 //
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 361
362 // Sent before the repost form warning is brought up. 362 // Sent before the repost form warning is brought up.
363 // The source is a NavigationController. 363 // The source is a NavigationController.
364 NOTIFICATION_REPOST_WARNING_SHOWN, 364 NOTIFICATION_REPOST_WARNING_SHOWN,
365 365
366 // Sent when the zoom level changes. The source is the HostZoomMap. The 366 // Sent when the zoom level changes. The source is the HostZoomMap. The
367 // details is a string of the hostname for which the zoom changed. In case 367 // details is a string of the hostname for which the zoom changed. In case
368 // of a temporary zoom level change, the details is an empty string. 368 // of a temporary zoom level change, the details is an empty string.
369 NOTIFICATION_ZOOM_LEVEL_CHANGED, 369 NOTIFICATION_ZOOM_LEVEL_CHANGED,
370 370
371 // Browser Plugin ----------------------------------------------------------
372
373 NOTIFICATION_BROWSER_PLUGIN_GUEST_CRASHED,
374
375 NOTIFICATION_BROWSER_PLUGIN_UPDATE_RECT,
jam 2012/08/13 21:35:35 please try to find a way to do these tests without
376
371 // Custom notifications used by the embedder should start from here. 377 // Custom notifications used by the embedder should start from here.
372 NOTIFICATION_CONTENT_END, 378 NOTIFICATION_CONTENT_END,
373 }; 379 };
374 380
375 } // namespace content 381 } // namespace content
376 382
377 #endif // CONTENT_PUBLIC_BROWSER_NOTIFICATION_TYPES_H_ 383 #endif // CONTENT_PUBLIC_BROWSER_NOTIFICATION_TYPES_H_
OLDNEW
« no previous file with comments | « content/content_tests.gypi ('k') | content/renderer/browser_plugin/browser_plugin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698