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

Side by Side Diff: content/child/npapi/npobject_util.h

Issue 942963003: Cleanup: Fix content header include guards. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: REBASE Created 5 years, 9 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
« no previous file with comments | « content/child/child_message_filter.h ('k') | content/child/npapi/plugin_stream_url.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 // Helper functions that are used by the NPObject proxy and stub. 5 // Helper functions that are used by the NPObject proxy and stub.
6 6
7 #ifndef CONTENT_NPAPI_CHILD_NPOBJECT_UTIL_H_ 7 #ifndef CONTENT_CHILD_NPAPI_NPOBJECT_UTIL_H_
8 #define CONTENT_NPAPI_CHILD_NPOBJECT_UTIL_H_ 8 #define CONTENT_CHILD_NPAPI_NPOBJECT_UTIL_H_
9 9
10 #include "build/build_config.h" 10 #include "build/build_config.h"
11 11
12 #if defined(OS_WIN) 12 #if defined(OS_WIN)
13 #include <windows.h> 13 #include <windows.h>
14 #endif 14 #endif
15 15
16 #include "content/child/npapi/npobject_stub.h" 16 #include "content/child/npapi/npobject_stub.h"
17 17
18 class GURL; 18 class GURL;
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 // Given a plugin's HWND, returns an event associated with the WebContentsImpl 64 // Given a plugin's HWND, returns an event associated with the WebContentsImpl
65 // that's set when inside a messagebox. This tells the plugin process that 65 // that's set when inside a messagebox. This tells the plugin process that
66 // the message queue should be pumped (as what would happen if everything was 66 // the message queue should be pumped (as what would happen if everything was
67 // in-process). This avoids deadlocks when a plugin invokes javascript that 67 // in-process). This avoids deadlocks when a plugin invokes javascript that
68 // causes a message box to come up. 68 // causes a message box to come up.
69 HANDLE GetMessageBoxEvent(HWND hwnd); 69 HANDLE GetMessageBoxEvent(HWND hwnd);
70 #endif // defined(OS_WIN) 70 #endif // defined(OS_WIN)
71 71
72 } // namespace content 72 } // namespace content
73 73
74 #endif // CONTENT_NPAPI_CHILD_NPOBJECT_UTIL_H_ 74 #endif // CONTENT_CHILD_NPAPI_NPOBJECT_UTIL_H_
OLDNEW
« no previous file with comments | « content/child/child_message_filter.h ('k') | content/child/npapi/plugin_stream_url.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698